Go HTTP Server with OTEL Template

This commit is contained in:
2025-01-03 17:13:15 -05:00
parent a147e6c5cb
commit 3c22ec4fd8
8 changed files with 258 additions and 0 deletions

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

@ -0,0 +1,16 @@
{
"$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": []
}
]
}