kjuulh
ee323e99e8
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
20 lines
262 B
Rust
20 lines
262 B
Rust
mod api;
|
|
mod cli;
|
|
mod state;
|
|
mod grpc {
|
|
include!("grpc/churn.v1.rs");
|
|
}
|
|
|
|
mod agent;
|
|
mod server;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> anyhow::Result<()> {
|
|
dotenv::dotenv().ok();
|
|
tracing_subscriber::fmt::init();
|
|
|
|
cli::execute().await?;
|
|
|
|
Ok(())
|
|
}
|