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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user