Initial commit: Rust YpDaemon

This commit is contained in:
Torsten Schulz (local)
2025-11-21 23:05:34 +01:00
commit d0ec363f09
21 changed files with 8067 additions and 0 deletions

23
src/worker/mod.rs Normal file
View File

@@ -0,0 +1,23 @@
mod base;
mod character_creation;
mod director;
mod stockage_manager;
mod house;
mod produce;
mod politics;
mod underground;
mod value_recalculation;
mod user_character;
pub use base::Worker;
pub use crate::db::ConnectionPool;
pub use character_creation::CharacterCreationWorker;
pub use director::DirectorWorker;
pub use stockage_manager::StockageManager;
pub use house::HouseWorker;
pub use produce::ProduceWorker;
pub use politics::PoliticsWorker;
pub use underground::UndergroundWorker;
pub use value_recalculation::ValueRecalculationWorker;
pub use user_character::UserCharacterWorker;