Files
flux-releaser/crates/flux-releaser/src/lib.rs
kjuulh 065b0c5847
Some checks failed
continuous-integration/drone/push Build is failing
feat: always install
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-09-07 23:48:45 +02:00

16 lines
203 B
Rust

use cli::Command;
pub mod api;
pub mod app;
pub mod cli;
pub mod grpc;
pub mod services;
pub async fn run() -> anyhow::Result<()> {
dotenv::dotenv().ok();
Command::run().await?;
Ok(())
}