From 66aa05c95493964e9fcfda67f517e16deadb83db Mon Sep 17 00:00:00 2001 From: Alexander Baranov Date: Fri, 15 May 2026 18:57:18 +0300 Subject: [PATCH] =?UTF-8?q?smart-house-web:=20=D0=B2=20=D1=80=D0=B0=D0=B1?= =?UTF-8?q?=D0=BE=D1=82=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- smart-house-web/backend/src/server.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/smart-house-web/backend/src/server.rs b/smart-house-web/backend/src/server.rs index 257414f..d3c9d85 100644 --- a/smart-house-web/backend/src/server.rs +++ b/smart-house-web/backend/src/server.rs @@ -27,7 +27,9 @@ pub fn run_server() { } async fn server_main() { - let app = axum::Router::new().fallback(fallback); + let app = axum::Router::new() + // TODO + .fallback(fallback); let addr = "127.0.0.1:8080"; let listener = match tokio::net::TcpListener::bind(addr).await { Ok(listener) => listener,