progress on overall structure
This commit is contained in:
parent
5235ca9308
commit
3938b2032d
18 changed files with 272 additions and 58 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue