SeaBattle/rust/sea_battle_backend/src/lib.rs

15 lines
225 B
Rust

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