23 lines
448 B
JSON
23 lines
448 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug Server",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceFolder}/cmd/schreifuchs-ch/main.go",
|
|
"cwd": "${workspaceFolder}",
|
|
"showLog": true
|
|
},
|
|
{
|
|
"name": "Attach to Air",
|
|
"type": "go",
|
|
"request": "attach",
|
|
"mode": "remote",
|
|
"port": 2345,
|
|
"host": "127.0.0.1"
|
|
}
|
|
]
|
|
}
|