Files
flux/.vscode/launch.json
Zoe c891c24843 Massive architectural rework
This commit massively overhauls the project's structure to simplify
development. Most parts are now correctly compartmentalized and
dependencies are passed in a sane way rather than global variables
galore xd.
2025-05-02 12:15:40 -05:00

19 lines
572 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 Daemon",
"type": "go",
"request": "launch",
"env": {
"FLUXD_ROOT_DIR": "${workspaceFolder}/fluxdd"
},
"mode": "auto",
"program": "${workspaceFolder}/cmd/daemon/main.go",
}
]
}