From d7fef30ac3f539975ef9edbba8e0af4a4e9ff3de Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 5 Jan 2025 00:38:55 +0100 Subject: Commit batch of lints to allow autofix --- src/main.rs | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'src/main.rs') 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(()); } } -- cgit