cpularp-manager-api/.vscode/launch.json

17 lines
547 B
JSON
Raw Permalink Normal View History

2025-04-24 13:58:05 -05:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch API Server",
"type": "go",
"request": "launch",
"host": "0.0.0.0",
2025-04-24 13:58:05 -05:00
"mode": "debug",
"program": "${workspaceFolder}/src/gin-cpularp.go",
"cwd": "${workspaceFolder}/src"
},
]
}