14 lines
169 B
Rust
14 lines
169 B
Rust
|
|
mod action;
|
||
|
|
mod bot;
|
||
|
|
mod computer;
|
||
|
|
mod model;
|
||
|
|
mod run;
|
||
|
|
|
||
|
|
pub use action::*;
|
||
|
|
pub use bot::*;
|
||
|
|
pub use computer::*;
|
||
|
|
pub use model::*;
|
||
|
|
pub use run::*;
|
||
|
|
|
||
|
|
pub type Id = String;
|