1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-12-30 15:38:52 +00:00
comunicapiv3/src/lib.rs

18 lines
321 B
Rust
Raw Normal View History

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