Initial commit

This commit is contained in:
Guilleag01
2023-08-06 17:40:50 +02:00
commit cd6624be37
42 changed files with 796 additions and 0 deletions

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

@@ -0,0 +1,17 @@
{
"tasks": [
{
"label": "cargo tauri dev",
"type": "shell",
"command": "cargo", // note: full path to the cargo
"args": [
"tauri",
"dev"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}