probe/.vscode/launch.json

31 lines
607 B
JSON
Raw Normal View History

2018-08-03 06:57:19 +00:00
{
2018-08-29 16:42:33 +00:00
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
2018-09-04 10:09:15 +00:00
"program": "${workspaceRoot}/cmd/main.go",
2018-08-29 16:42:33 +00:00
"env": {},
"args": [],
2018-08-30 06:35:03 +00:00
"showLog": true
2018-08-29 16:42:33 +00:00
},
{
"name": "File Debug",
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${fileDirname}",
"env": {},
"args": [],
"showLog": true
}
]
2018-08-30 06:35:03 +00:00
}