Files
mayfly-go/.vscode/launch.json

18 lines
480 B
JSON
Raw Normal View History

2021-01-08 15:37:32 +08:00
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
2021-01-08 15:37:32 +08:00
{
"name": "mayfly-go",
"type": "go",
"request": "launch",
"mode": "auto",
2021-03-24 17:18:39 +08:00
"program": "${fileDirname}/main.go",
2021-01-08 15:37:32 +08:00
"env": {},
"args": []
},
2021-01-08 15:37:32 +08:00
]
}