diff options
Diffstat (limited to 'zenserver/sos/sos.h')
| -rw-r--r-- | zenserver/sos/sos.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/zenserver/sos/sos.h b/zenserver/sos/sos.h new file mode 100644 index 000000000..f3e77e73e --- /dev/null +++ b/zenserver/sos/sos.h @@ -0,0 +1,21 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +#pragma once + +#include <zencore/httpserver.h> + +#include <spdlog/spdlog.h> + +class HttpCommonStructuredObjectStore : public zen::HttpService +{ +public: + HttpCommonStructuredObjectStore(); + virtual ~HttpCommonStructuredObjectStore(); + + virtual const char* BaseUri() const override; + virtual void HandleRequest(zen::HttpServerRequest& HttpServiceRequest) override; + +private: + spdlog::logger m_Log; + zen::HttpRequestRouter m_Router; +}; |