All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
11 lines
134 B
Rust
11 lines
134 B
Rust
mod cli;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> anyhow::Result<()> {
|
|
dotenv::dotenv().ok();
|
|
|
|
cli::execute().await?;
|
|
|
|
Ok(())
|
|
}
|