From a7935b111e7b944f4c4fadfabe8f5bf37effe1b3 Mon Sep 17 00:00:00 2001 From: LinlyBoi Date: Sun, 17 Dec 2023 23:27:08 +0200 Subject: [PATCH] first scope added --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 9b17a4a..a1f0fb5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,6 +15,7 @@ async fn main() -> std::io::Result<()> { App::new() .service(hello) .service(echo) + .service(arrivals::init_arrivals_scope()) .app_data(web::Data::new(init_dbpool())) }) .bind(("localhost", 8080))?