Set up folder structure for the command handlers.

This commit is contained in:
Tom Alexander 2023-10-18 19:54:18 -04:00
parent 179b07388a
commit 8b5930f277
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
5 changed files with 4 additions and 0 deletions

View File

0
src/command/build/mod.rs Normal file
View File

0
src/command/init/mod.rs Normal file
View File

3
src/command/mod.rs Normal file
View File

@ -0,0 +1,3 @@
pub(crate) mod add_post;
pub(crate) mod build;
pub(crate) mod init;

View File

@ -5,6 +5,7 @@ use clap::Parser;
use self::cli::parameters::Cli;
use self::cli::parameters::Commands;
mod cli;
mod command;
fn main() -> Result<ExitCode, Box<dyn std::error::Error>> {
let rt = tokio::runtime::Runtime::new()?;