2026-05-08 19:07:01 +08:00

17 lines
293 B
Rust

mod core;
mod model;
mod utils;
mod web;
mod detection;
use crate::core::system::System;
use crate::model::error::Error;
#[actix_web::main]
async fn main() -> Result<(), Error> {
let mut system = System::new().await?;
system.run().await?;
system.terminate().await?;
Ok(())
}