X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/5f81d796fed4e4efbaf6dbed7d3c69481afddeb3..2998247083406f914b3647cedd19abf5507bf2c6:/src/main.rs diff --git a/src/main.rs b/src/main.rs index bf1e184..0de896b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,13 +1,21 @@ // mod argument_parser; mod configuration; mod command; +mod constants; +mod gemini_parser; +mod generator; +mod metadata; +mod post; +mod template; use std::iter::once; use std::env::args; use std::io::Result; use command::{available_commands, Command, help::Help}; +use configuration::Configuration; fn main() -> Result<()> { + let configuration = Configuration::new(); let commands = available_commands(); let arguments: Vec = args().collect(); @@ -23,7 +31,7 @@ fn main() -> Result<()> { .collect(); for command in command_chain { - let result = command.execute(arguments.get(2)); + let result = command.execute(arguments.get(2), &configuration, command_name); if let Err(_) = result { return result; } @@ -33,5 +41,5 @@ fn main() -> Result<()> { } } - Help::new().execute(None) + Help::new().execute(None, &configuration, &"help".to_string()) }