overflow_service_websocket/.vscode/launch.json

32 lines
758 B
JSON
Raw Normal View History

2017-07-13 15:35:54 +00:00
{
"version": "0.2.0",
"configurations": [
{
2017-07-14 11:18:07 +00:00
"name": "Debug",
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${workspaceRoot}/main.go",
"env": {},
"args": [],
"showLog": true
},
{
"name": "File Debug",
2017-07-13 15:35:54 +00:00
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${fileDirname}",
"env": {},
"args": [],
"showLog": true
}
2017-07-14 11:18:07 +00:00
2017-07-13 15:35:54 +00:00
]
}