From acc32ccc1650b99e03c390a87e71b0a85b073162 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 6 Sep 2022 19:58:35 +0200 Subject: Create a 3d model object --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 4a211fd..1c9d63a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -35,7 +35,8 @@ async fn create_app() -> Router { let api_routes = Router::new() .nest("/users", routes::user::create_route()) - .nest("/auth", routes::auth::create_route()); + .nest("/auth", routes::auth::create_route()) + .nest("/models", routes::model::create_route()); Router::new() // Map all routes to `/v1/*` namespace -- cgit v1.2.3-71-g8e6c