wpw-final/.vscode/launch.json
2022-12-02 20:40:23 +07:00

22 lines
No EOL
588 B
JSON

{
"configurations": [
{
"name": "Launch server on external",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/server",
"host": "127.0.0.1",
"port": 10500,
"showGlobalVariables": true,
},
{
"name": "Launch server",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/server",
"showGlobalVariables": true,
}
]
}