mirror of
https://github.com/yuanyuanxiang/SimpleRemoter.git
synced 2026-01-21 23:13:08 +08:00
30 lines
800 B
JSON
30 lines
800 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Server",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}/cmd",
|
|
"cwd": "${workspaceFolder}",
|
|
"args": [],
|
|
"env": {},
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "Debug Server",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceFolder}/cmd",
|
|
"cwd": "${workspaceFolder}",
|
|
"args": [
|
|
"-port=9090"
|
|
],
|
|
"env": {},
|
|
"console": "integratedTerminal",
|
|
"buildFlags": "-gcflags='all=-N -l'"
|
|
}
|
|
]
|
|
} |