go-http-server-with-otel/.vscode/launch.json

17 lines
338 B
JSON
Raw Normal View History

2025-01-03 22:13:15 +00:00
{
"$schema": "https://raw.githubusercontent.com/mfussenegger/dapconfig-schema/master/dapconfig-schema.json",
"version": "0.2.0",
"configurations": [
{
"name": "Run Server",
"type": "delve",
"request": "launch",
"program": "${workspaceFolder}",
"env": {
"APP_NAME": "Go HTTP with OTEL"
},
"args": []
}
]
}