first commit

This commit is contained in:
William Bouzourène 2025-11-29 21:42:30 +01:00
commit 5576528bcf
Signed by: bouzoure
GPG key ID: 423440D735B56BE2
10 changed files with 386 additions and 0 deletions

13
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}",
"console": "integratedTerminal",
}
]
}

5
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.insertSpaces": false
}