sysmonk/squire/mod.rs
1/// Module for the web data configuration that holds the secrets required by the application.
2pub mod settings;
3/// Module that initializes the logger and loads the configuration into a dedicated Struct.
4pub mod startup;
5/// Module for the functions that yield an ASCII art to print during startup.
6pub mod ascii_art;
7/// Module for the CORS middleware configuration.
8pub mod middleware;
9/// Module that handles parsing command line arguments.
10pub mod parser;
11/// Module for custom functions that logs connection information and builds custom error responses.
12pub mod custom;
13/// Module that handles the authentication and
14pub mod authenticator;
15/// Module for the functions that handle encryption/encoding and decryption/decoding.
16pub mod secure;
17/// Module for utility functions.
18pub mod util;