qnc-server-tob/.vscode/tasks.json

20 lines
526 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "Run Go-Zero API (无调试)",
"type": "shell",
2025-06-09 12:34:52 +08:00
"command": "go run ${workspaceFolder}/app/main/api/main.go -f ${workspaceFolder}/app/main/api/etc/main.dev.yaml",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": []
}
]
}