progress on overall structure

This commit is contained in:
Jolimaitre Matthieu 2021-11-12 21:01:35 +01:00
parent 5235ca9308
commit 3938b2032d
18 changed files with 272 additions and 58 deletions

View file

@ -1,5 +1,24 @@
///
/// encapsulate the logic responsible for reading and parsing the server configuration
///
pub mod config;
pub mod database;
///
/// encapsulate the logic responsible for interacting with the database
///
pub mod db;
///
/// main module, exposes the highest level structure holding the whole server runtime logic
///
pub mod harsh;
///
/// encapsulate the logic responsible for receiving and routing http requests
///
pub mod http;
///
/// encapsulate the logic responsible for logging events occuring while the server is running
///
pub mod log;