diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-16 12:44:58 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-16 13:50:22 +0200 |
commit | 3ede86caf948d6e989fd056ea4f8d8c588939971 (patch) | |
tree | a3226c6b9005ddc24a4af7a3c38722eb113963d4 /minion/src/http | |
parent | 6aa69cdcd8720d835e922323cdcf79147c9b3154 (diff) |
feat(minion): add reading temperature sensor
Diffstat (limited to 'minion/src/http')
-rw-r--r-- | minion/src/http/response_status.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/minion/src/http/response_status.hpp b/minion/src/http/response_status.hpp index 577eedd..4db7546 100644 --- a/minion/src/http/response_status.hpp +++ b/minion/src/http/response_status.hpp @@ -1,3 +1,4 @@ #pragma once constexpr auto HTTP_RESPONSE_STATUS_OK = 200U; +constexpr auto HTTP_RESPONSE_STATUS_INTERNAL_SERVER_ERROR = 500U; |