diff --git a/src/tasks/mod.rs b/src/tasks/mod.rs index b856125..0128c6c 100644 --- a/src/tasks/mod.rs +++ b/src/tasks/mod.rs @@ -38,5 +38,5 @@ pub trait Task: Send + Sync { /// Analogous to [`crate::commands::get_commands`], every task that is defined /// must be included in the returned vector in order for it to be scheduled. pub fn get_tasks() -> Vec> { - vec![Box::new(StatusUpdateCheck), Box::new(PresenseReport)] + vec![Box::new(PresenseReport)] }