//! # Comunic Server Library //! //! This library contains all the logic of the Comunic Server. #[macro_use] extern crate lazy_static; pub mod data; pub mod helpers; pub mod controllers; pub mod api_data; pub mod utils; pub mod constants; pub mod server; pub mod user_ws_routes; pub mod routes; pub mod cleanup_thread;