Files
hyperlog/crates/hyperlog/src/main.rs
kjuulh 6a147ba0d2
All checks were successful
continuous-integration/drone/push Build is passing
feat: with basic server
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-05-11 15:51:01 +02:00

11 lines
134 B
Rust

mod cli;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
dotenv::dotenv().ok();
cli::execute().await?;
Ok(())
}