Some checks failed
continuous-integration/drone/push Build is failing
Signed-off-by: kjuulh <contact@kjuulh.io>
16 lines
203 B
Rust
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(())
|
|
}
|