Files
herald/src/main.rs
T
2026-05-28 21:35:41 +00:00

12 lines
168 B
Rust

mod api;
mod env;
mod gitea;
mod bot;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
let config = env::load_config()?;
api::start_api(config).await
}