offline-web/exp2/src/main.rs

7 lines
100 B
Rust

mod serve;
#[tokio::main(flavor = "current_thread")]
async fn main() {
serve::serve().await;
}