add debug flag and working directory to launch.json

This commit is contained in:
Joel Wetzell
2025-12-24 13:26:09 -06:00
parent f6c2b1d9ac
commit b0cc47236f

4
.vscode/launch.json vendored
View File

@@ -10,7 +10,9 @@
"type": "go", "type": "go",
"request": "launch", "request": "launch",
"mode": "auto", "mode": "auto",
"program": "cmd/showbridge" "program": "cmd/showbridge",
"args": ["--debug"],
"cwd": "./"
} }
] ]
} }