coa_website/lib.rs
1/// HTTP types like version, methods and status codes
2pub mod http;
3/// Parsing HTTP request into `HttpRequest`
4pub mod request;
5/// Formatting and building HTTP response
6pub mod response;
7// Configuration file
8pub mod config;
9/// Log request into a file
10pub mod logger;
11/// Server statistics
12pub mod stats;
13/// Route a request to the desired resource
14pub mod router;
15/// Server module
16pub mod server;