diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-01-05 00:38:55 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-01-05 00:38:55 +0100 |
| commit | d7fef30ac3f539975ef9edbba8e0af4a4e9ff3de (patch) | |
| tree | 1e71dd131261a8f7a13d86d4dddd7d421e6a09f4 /src/main.rs | |
| parent | d26464d12e41e8d53fca8d0e5f9cc6ac03e48f9a (diff) | |
Commit batch of lints to allow autofix
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(()); } } |