dtm/.vscode/launch.json
2021-05-16 09:14:53 +08:00

32 lines
711 B
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/main.go",
"env": {
// "GIN_MODE": "release"
},
"args": []
},
{
"name": "Test",
"type": "go",
"request": "launch",
"mode": "test",
"port": 2345,
"host": "127.0.0.1",
"program": "${file}",
"env": {
// "GIN_MODE": "release"
},
"args": []
}
]
}