Formatting

This commit is contained in:
Connor Johnstone
2026-03-18 15:37:10 -04:00
parent 1f36374394
commit 93392db27c
8 changed files with 250 additions and 161 deletions

View File

@@ -34,6 +34,12 @@ pub struct TaskManager {
tasks: Mutex<HashMap<String, TaskInfo>>,
}
impl Default for TaskManager {
fn default() -> Self {
Self::new()
}
}
impl TaskManager {
pub fn new() -> Self {
Self {