debug launch.json

This commit is contained in:
renaldybrada
2026-01-30 10:23:48 +07:00
parent 577dc163c0
commit 283e23f176
+17
View File
@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Go API",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/api",
"cwd": "${workspaceFolder}",
"env": {
"APP_ENV": "local"
},
"args": []
}
]
}