launch.json 591 B

12345678910111213141516171819
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. // "args": ["gendbmodel","--c=222.env"]
  6. // "args": ["jsonc", "-c=222.env"]
  7. // "args": ["-c=222.env"]
  8. "version": "0.2.0",
  9. "configurations": [
  10. {
  11. "name": "gadmin server",
  12. "type": "go",
  13. "request": "launch",
  14. "mode": "auto",
  15. "program": "${workspaceFolder}",
  16. "args": ["cron"]
  17. }
  18. ]
  19. }