debug, deleting assets

This commit is contained in:
Blue 2024-01-21 16:23:48 -03:00
parent 19d786631a
commit a2c2c2a883
Signed by: blue
GPG key ID: 9B203B252A63EE38
20 changed files with 139 additions and 21 deletions

View file

@ -9,6 +9,7 @@ constexpr std::array<uint16_t, static_cast<uint8_t>(Response::Status::__size)> s
200,
400,
401,
403,
404,
405,
409,
@ -19,6 +20,7 @@ constexpr std::array<std::string_view, static_cast<uint8_t>(Response::Status::__
"Status: 200 OK",
"Status: 400 Bad Request",
"Status: 401 Unauthorized",
"Status: 403 Forbidden",
"Status: 404 Not Found",
"Status: 405 Method Not Allowed",
"Status: 409 Conflict",

View file

@ -20,6 +20,7 @@ public:
ok,
badRequest,
unauthorized,
forbidden,
notFound,
methodNotAllowed,
conflict,