12 lines
190 B
Rust
12 lines
190 B
Rust
|
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(())
|
||
|
}
|