summaryrefslogtreecommitdiff
path: root/server/bot/src/algos/mod.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-11-22 15:41:45 +0100
committermetamuffin <metamuffin@disroot.org>2024-11-22 15:44:23 +0100
commitf27329f252a7844686249159cec721abbab0b47b (patch)
treef6cfcb2e56f765af5051712306f557af8a925265 /server/bot/src/algos/mod.rs
parent43b84664344b461bfb4128bb10111c3099029c7a (diff)
downloadhurrycurry-f27329f252a7844686249159cec721abbab0b47b.tar
hurrycurry-f27329f252a7844686249159cec721abbab0b47b.tar.bz2
hurrycurry-f27329f252a7844686249159cec721abbab0b47b.tar.zst
disable unknown oders for autosushi; fix #204
Diffstat (limited to 'server/bot/src/algos/mod.rs')
-rw-r--r--server/bot/src/algos/mod.rs6
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)] = &[