aboutsummaryrefslogtreecommitdiff
path: root/zenserver/sos/sos.h
diff options
context:
space:
mode:
Diffstat (limited to 'zenserver/sos/sos.h')
-rw-r--r--zenserver/sos/sos.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/zenserver/sos/sos.h b/zenserver/sos/sos.h
deleted file mode 100644
index e602df8c4..000000000
--- a/zenserver/sos/sos.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright Epic Games, Inc. All Rights Reserved.
-
-#pragma once
-
-#include <zenhttp/httpserver.h>
-
-#include <zencore/logging.h>
-
-namespace zen {
-
-/** Simple Object Store API
- *
- * Implements an API shared with Jupiter
- *
- * - Objects (compact binary), named and private
- * - Blobs (unstructured binary), named and private
- *
- */
-
-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;
-};
-
-} // namespace zen