id3tool/.vscode/launch.json

17 lines
290 B
JSON
Raw 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",
"/home/velvettear/downloads/test"
]
}
]
}