diff options
Diffstat (limited to 'server/bot/src/algos/mod.rs')
-rw-r--r-- | server/bot/src/algos/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/bot/src/algos/mod.rs b/server/bot/src/algos/mod.rs index 0b8e4339..059b9e89 100644 --- a/server/bot/src/algos/mod.rs +++ b/server/bot/src/algos/mod.rs @@ -16,18 +16,18 @@ */ mod customer; +mod dishwasher; mod frank; mod simple; mod test; mod waiter; -mod dishwasher; -pub use customer::Customer; +pub use customer::{Customer, CustomerConfig}; +pub use dishwasher::DishWasher; pub use frank::Frank; pub use simple::Simple; pub use test::Test; pub use waiter::Waiter; -pub use dishwasher::DishWasher; #[allow(clippy::type_complexity)] pub const ALGO_CONSTRUCTORS: &[(&str, fn() -> crate::DynBotAlgo)] = &[ |