-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6088f95
commit 6ddb740
Showing
8 changed files
with
33 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
/// Module for the commandline interface creation kit that parses the commandline arguments | ||
pub mod parser; | ||
/// Module for the web data configuration that holds the secrets required by the application. | ||
pub mod settings; | ||
/// Module that initializes the logger and loads the configuration into a dedicated Struct. | ||
pub mod startup; | ||
/// Module for the functions that handle encryption/encoding and decryption/decoding. | ||
pub mod secure; | ||
/// Module for the function that logs the incoming connection information. | ||
pub mod logger; | ||
/// Module for the functions that yield an ASCII art to print during startup. | ||
pub mod ascii_art; | ||
/// Module for the CORS middleware configuration. | ||
pub mod middleware; | ||
/// Module for the function that converts the subtitles from `srt` to `vtt` file format. | ||
pub mod subtitles; | ||
/// Module for the functions that scan the video source and render the filenames as struct. | ||
pub mod content; | ||
/// Module that handles the authentication and | ||
pub mod authenticator; |