1
2
3
4
5
6
7
8
9
mod commands;
mod runner;

use crate::cli::runner::run;

pub async fn main() -> anyhow::Result<()> {
    run().await?;
    Ok(())
}