chore(debugger): add debugging configuration for vscode and nvim-dap

This commit is contained in:
Gustavo "Guz" L. de Mello
2024-08-23 21:06:22 -03:00
parent b49148a3ef
commit 92479fbc61

14
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/main.go",
"envFile": "${workspaceFolder}/.env",
}
}
]
}