diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/main.rs b/src/main.rs index 535a2dd..6c529ed 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,20 +1,19 @@ -mod configuration; +mod archiver; mod command; +mod configuration; mod constants; -mod gemini_parser; mod generator; -mod archiver; mod metadata; mod post; +mod remote; mod template; mod utils; -mod remote; -use std::iter::once; +use command::{available_commands, help::Help, Command}; +use configuration::Configuration; use std::env::args; use std::io::Result; -use command::{available_commands, Command, help::Help}; -use configuration::Configuration; +use std::iter::once; fn main() -> Result<()> { let result = run(); @@ -55,7 +54,7 @@ fn run() -> Result<()> { } } - return Ok(()) + return Ok(()); } } |