2021-02-05 10:37:37 +01:00
|
|
|
//! # Comunic Server Library
|
|
|
|
//!
|
|
|
|
//! This library contains all the logic of the Comunic Server.
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
|
|
|
|
2020-05-21 09:21:58 +02:00
|
|
|
pub mod data;
|
2020-05-21 15:28:07 +02:00
|
|
|
pub mod helpers;
|
2020-05-23 11:00:53 +02:00
|
|
|
pub mod controllers;
|
2020-05-24 13:09:50 +02:00
|
|
|
pub mod api_data;
|
2020-05-24 14:23:03 +02:00
|
|
|
pub mod utils;
|
2020-05-24 13:09:50 +02:00
|
|
|
|
2021-02-13 16:15:25 +01:00
|
|
|
pub mod constants;
|
|
|
|
pub mod server;
|
|
|
|
pub mod user_ws_routes;
|
2021-02-13 16:36:39 +01:00
|
|
|
pub mod routes;
|
|
|
|
pub mod cleanup_thread;
|