rustream/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 handle encryption/encoding and decryption/decoding.
6pub mod secure;
7/// Module for custom functions that logs connection information and builds custom error responses.
8pub mod custom;
9/// Module for the functions that yield an ASCII art to print during startup.
10pub mod ascii_art;
11/// Module for the CORS middleware configuration.
12pub mod middleware;
13/// Module for the function that converts the subtitles from `srt` to `vtt` file format.
14pub mod subtitles;
15/// Module for the functions that scans the source and renders the filenames as a struct.
16pub mod content;
17/// Module that handles the authentication and
18pub mod authenticator;
19/// Module that handles parsing command line arguments.
20pub mod parser;