1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-02-07 01:37:05 +00:00
comunicapiv3/src/lib.rs

18 lines
321 B
Rust
Raw Normal View History

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;