Files
go2rtc/.vscode/launch.json
T
2025-11-16 16:33:09 +01:00

19 lines
507 B
JSON

{
// 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": "Debug go2rtc",
"type": "go",
"request": "launch",
"mode": "auto",
"env": {
"CGO_ENABLED": "0"
},
"program": "main.go",
}
]
}