baseauth/src/main.rs

12 lines
190 B
Rust
Raw Normal View History

2023-08-11 20:45:35 +00:00
mod api;
mod call;
use anyhow::Result;
#[tokio::main]
async fn main() -> Result<()> {
println!("Starting BaseAuth server v0.1");
let tx = call::start_worker().await?;
Ok(())
}