obs-access-signer/.vscode/launch.json
Nugraha 9bba39a811
All checks were successful
continuous-integration/drone/push Build is passing
all: initial files
2022-12-05 03:40:04 +07:00

22 lines
No EOL
566 B
JSON

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