galoy_cli/cli/
mod.rs

1mod commands;
2mod runner;
3
4use crate::cli::runner::run;
5
6pub async fn main() -> anyhow::Result<()> {
7    run().await?;
8    Ok(())
9}