mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-22 21:39:21 +00:00
18 lines
321 B
Rust
18 lines
321 B
Rust
//! # 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; |