implemented serve command and added async runtime

This commit is contained in:
2023-03-12 19:30:11 +01:00
parent fb147e5857
commit cc77e4ef9c
5 changed files with 1994 additions and 44 deletions

View File

@@ -5,7 +5,8 @@ mod test;
use app::App;
fn main() {
#[tokio::main]
async fn main() {
let app = App::new();
app.start();
app.start().await;
}