refactor the main structure

This commit is contained in:
2023-09-25 21:09:21 +02:00
parent 40385bbae2
commit 8b13c52b97
11 changed files with 57 additions and 68 deletions

View File

@@ -1,9 +1,9 @@
mod deploy;
mod server;
mod conf;
mod api;
mod database;
mod controller;
#[actix_web::main]
async fn main() {
server::start().await;
api::routes::start().await;
}