cpp_backend/src/routes.h

13 lines
212 B
C
Raw Permalink Normal View History

2024-03-23 18:41:09 +01:00
#pragma once
#include <string_view>
namespace http_server
{
using namespace std;
constexpr static string_view k_MapsRoute = "/api/v1/maps"sv;
2024-03-25 16:48:23 +01:00
constexpr static string_view k_StaticAssetsRoute = "/public"sv;
2024-03-23 18:41:09 +01:00
}