1 2 3 4 5 6 7 8 9
//! A collection of pre-built bots to test with. pub mod honest_bot; pub mod random_bot; pub mod static_bot; pub use honest_bot::HonestBot; pub use random_bot::RandomBot; pub use static_bot::StaticBot;