ares/cli_input_parser/mod.rs
1/*
2When the user provides CLI input, we need to parse it for:
3- Text or file?
4- Verbose mode to level
5
6and so on.
7*/
8
9// build new library_input
10
11use crate::api_library_input_struct::LibraryInput;
12
13/// This creates a new LibraryInput struct and sets it to a default.
14/// added _ before name to let clippy know that they aren't used
15fn _main() {
16    let _options = LibraryInput::default();
17}