diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-16 08:30:59 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-16 08:30:59 +0200 |
commit | 6aa69cdcd8720d835e922323cdcf79147c9b3154 (patch) | |
tree | 9693e15d4b744e9f81b8c62f7a8a36ad11c920bf /minion/src/http/response_status.hpp | |
parent | 39e2964b0315faeac0c9f8431334ba10093b9490 (diff) |
refactor(minion): create http OK response constant
Diffstat (limited to 'minion/src/http/response_status.hpp')
-rw-r--r-- | minion/src/http/response_status.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/minion/src/http/response_status.hpp b/minion/src/http/response_status.hpp new file mode 100644 index 0000000..577eedd --- /dev/null +++ b/minion/src/http/response_status.hpp @@ -0,0 +1,3 @@ +#pragma once + +constexpr auto HTTP_RESPONSE_STATUS_OK = 200U; |