Files
go/.vscode/launch.json

13 lines
257 B
JSON
Raw Permalink 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",
2020-07-28 13:22:55 +09:00
"program": "${workspaceFolder}/server.go"
2019-04-16 19:54:02 -07:00
}
]
2020-07-28 13:22:55 +09:00
}