refactor: Store the config in CliOptions instead of its path

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb
2025-06-07 18:57:53 +00:00
parent 30b3056d39
commit a6a61aedf1
15 changed files with 84 additions and 73 deletions

View File

@@ -61,7 +61,7 @@ fn set_log_level(verbosity: Verbosity) {
#[tokio::main]
async fn main() -> ExitCode {
let cli = match cli::parsers::post_parse_cli(Cli::parse()) {
let cli = match cli::post_cli(Cli::parse()) {
Ok(cli) => cli,
Err(err) => {
eprintln!("{err}");