SeaBattle/sea_battle_backend/src/lib.rs
2022-09-14 18:34:10 +02:00

15 lines
217 B
Rust

extern crate core;
pub mod args;
#[cfg(test)]
pub mod bot_client;
pub mod consts;
pub mod data;
pub mod game;
pub mod human_player;
pub mod human_player_ws;
pub mod random_bot;
pub mod server;
#[cfg(test)]
mod test;