Make some basic timer functionality

This commit is contained in:
2022-07-26 23:36:24 +02:00
parent 671e85e9c4
commit 7d42fff1fb
34 changed files with 255 additions and 53 deletions

11
.vscode/launch.json vendored
View File

@@ -23,10 +23,15 @@
"request": "launch",
"name": "Tauri Production Debug",
"cargo": {
"args": ["build", "--release", "--manifest-path=./src-tauri/Cargo.toml"]
"args": [
"build",
"--release",
"--manifest-path=./src-tauri/Cargo.toml"
]
},
// task for the `beforeBuildCommand` if used, must be configured in `.vscode/tasks.json`
"preLaunchTask": "ui:build"
}
},
]
}
}