From 2b61359e57faf32602b0fa27294411881f9ade13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD?= Date: Mon, 25 Mar 2024 18:48:23 +0300 Subject: [PATCH] move handler to special function --- src/routes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes.h b/src/routes.h index 0a05eaa..8a16664 100644 --- a/src/routes.h +++ b/src/routes.h @@ -7,6 +7,6 @@ namespace http_server using namespace std; constexpr static string_view k_MapsRoute = "/api/v1/maps"sv; -constexpr static string_view k_StaticAssetsPRoute = "/public"sv; +constexpr static string_view k_StaticAssetsRoute = "/public"sv; }