Files
go/.vscode/launch.json

12 lines
265 B
JSON
Raw Normal View History

2019-04-16 19:54:02 -07:00
{
"version": "0.2.0",
"configurations": [
{
2019-04-19 13:16:41 -07:00
"name": "Launch Server",
2019-04-16 19:54:02 -07:00
"type": "go",
"request": "launch",
"mode": "debug",
2019-06-15 13:42:27 +00:00
"program": "${workspaceFolder}/src/main/server.go"
2019-04-16 19:54:02 -07:00
}
]
}