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
5 changed files with 4 additions and 0 deletions

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()?;