Files
2022-06-24 00:26:47 +02:00

15 lines
435 B
JSON

{
"version": "0.2.0",
"configurations": [
{
// from https://github.com/vscode-debug-specs/go#debugging-executable-file
"name": "Debug Podsync",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/podsync",
"cwd": "${workspaceFolder}",
"args": ["--config", "config.toml"]
}
]
}