id3tool/.vscode/launch.json

19 lines
309 B
JSON
Raw Permalink Normal View History

2024-05-28 13:48:19 +02:00
{
"version": "0.0.1",
"configurations": [
{
"name": "id3tool",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"args": [
"--debug",
"--timeout",
"5",
"/tmp/share/music"
2024-05-28 13:48:19 +02:00
]
}
]
}