diff --git a/src/command/add_post/mod.rs b/src/command/add_post/mod.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/command/build/mod.rs b/src/command/build/mod.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/command/init/mod.rs b/src/command/init/mod.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/command/mod.rs b/src/command/mod.rs new file mode 100644 index 0000000..08c8f41 --- /dev/null +++ b/src/command/mod.rs @@ -0,0 +1,3 @@ +pub(crate) mod add_post; +pub(crate) mod build; +pub(crate) mod init; diff --git a/src/main.rs b/src/main.rs index 22ab9b7..cb2c077 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,6 +5,7 @@ use clap::Parser; use self::cli::parameters::Cli; use self::cli::parameters::Commands; mod cli; +mod command; fn main() -> Result> { let rt = tokio::runtime::Runtime::new()?;