Files
houston/.vscode/launch.json

21 lines
570 B
JSON
Raw Normal View History

2023-05-24 15:14:04 +09:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "houston",
"type": "go",
"request": "launch",
"mode": "auto",
2023-05-25 10:59:04 +09:00
"program": "${workspaceFolder}",
2023-05-24 15:14:04 +09:00
"env": {
},
"args" : [
2023-05-25 10:59:04 +09:00
"-port=8080",
"-client"
2023-05-24 15:14:04 +09:00
]
}
]
}