Skip to content

Commit

Permalink
add todo for assembling module
Browse files Browse the repository at this point in the history
  • Loading branch information
HectorCastelli committed Jan 4, 2024
1 parent 07c492d commit 806a161
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::path::PathBuf;

use clap::{Parser, Subcommand, ValueEnum};
use log::{LevelFilter, trace};
use log::{LevelFilter, trace, error, debug};
use simplelog::{ColorChoice, CombinedLogger, Config, TermLogger, TerminalMode};

#[derive(Parser)]
Expand Down Expand Up @@ -60,5 +60,16 @@ fn main() {
ColorChoice::Auto,
)])
.unwrap();
trace!("Loggers initialized!")
trace!("Loggers initialized!");

match &cli.command {
Commands::Assemble { config } => {
trace!("Executing assemble");
debug!("Open config directory");
debug!("Assemble module information");
debug!("Assemble authorship information");
debug!("Assemble schema information");
debug!("Assemble content information");
},
}
}

0 comments on commit 806a161

Please sign in to comment.