From 0f94e292bde8b9614aa48a6ba87f1a8d927b8133 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Tue, 13 Aug 2024 14:50:10 +0200 Subject: replace customers with bots and refactor some more server code. --- server/bot/src/algos/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'server/bot/src/algos/mod.rs') diff --git a/server/bot/src/algos/mod.rs b/server/bot/src/algos/mod.rs index 7b165da4..d3aba8f4 100644 --- a/server/bot/src/algos/mod.rs +++ b/server/bot/src/algos/mod.rs @@ -15,10 +15,12 @@ along with this program. If not, see . */ +mod customer; mod simple; mod test; mod waiter; +pub use customer::Customer; pub use simple::Simple; pub use test::Test; pub use waiter::Waiter; @@ -27,4 +29,5 @@ pub const ALGO_CONSTRUCTORS: &'static [(&'static str, fn() -> Box