1
2
3
4
5
6
7
8
9
10
11
mod components;

pub use components::prelude::*;

#[tokio::main]
async fn main() {
    if let Err(e) = run().await {
        eprintln!("error: {}", e);
        std::process::exit(1);
    }
}