SeaBattle/sea_battle_backend/src/lib.rs

13 lines
184 B
Rust
Raw Normal View History

2022-09-14 16:02:11 +00:00
extern crate core;
2022-09-14 14:50:29 +00:00
pub mod args;
2022-09-10 13:02:45 +00:00
pub mod consts;
2022-09-11 14:48:20 +00:00
pub mod data;
pub mod game;
pub mod human_player;
pub mod human_player_ws;
pub mod random_bot;
2022-09-14 14:50:29 +00:00
pub mod server;
2022-09-14 15:36:16 +00:00
#[cfg(test)]
mod test;