1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
mxpv-podsync/.vscode/launch.json
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"]
}
]
}