Add WeatherWorker to the worker module and update worker creation logic: Introduced WeatherWorker to manage weather-related tasks. Updated the create_workers function to include WeatherWorker alongside existing workers, ensuring comprehensive handling of various operational aspects.

This commit is contained in:
Torsten Schulz (local)
2025-12-02 12:59:40 +01:00
parent c943e57f80
commit e14272e477
3 changed files with 143 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ mod underground;
mod value_recalculation;
mod user_character;
mod transport;
mod weather;
pub use base::Worker;
pub use crate::db::ConnectionPool;
@@ -22,4 +23,5 @@ pub use underground::UndergroundWorker;
pub use value_recalculation::ValueRecalculationWorker;
pub use user_character::UserCharacterWorker;
pub use transport::TransportWorker;
pub use weather::WeatherWorker;