Got Config parsed from yaml file

This commit is contained in:
AlexanderHD27
2025-05-20 01:59:41 +02:00
commit 877cf71413
6 changed files with 369 additions and 0 deletions

21
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
"label": "rust: cargo run",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "dedicated",
"showReuseMessage": true,
"clear": true
}
}
]
}