13 lines
134 B
Rust
13 lines
134 B
Rust
mod app;
|
|
|
|
#[cfg(test)]
|
|
mod test;
|
|
|
|
use app::App;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let app = App::new();
|
|
app.start().await;
|
|
}
|