This commit is contained in:
u80864958
2026-02-12 16:02:38 +01:00
commit 3d4d908d54
14 changed files with 885 additions and 0 deletions

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

@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Pierre",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/pierre/main.go",
"cwd": "${workspaceFolder}",
"backend": "dlv",
"showLog": true
}
]
}