dash-frontend: toast messages, 📦📎

This commit is contained in:
Aleksander
2025-12-08 22:42:05 +01:00
parent e7746f5981
commit b0985e33af
28 changed files with 316 additions and 80 deletions

View File

@@ -19,3 +19,9 @@ impl<TaskType: Clone + 'static> Tasks<TaskType> {
std::mem::take(&mut *tasks)
}
}
impl<TaskType: Clone + 'static> Default for Tasks<TaskType> {
fn default() -> Self {
Self::new()
}
}