diff options
Diffstat (limited to 'zenserver/auth/authservice.h')
| -rw-r--r-- | zenserver/auth/authservice.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/zenserver/auth/authservice.h b/zenserver/auth/authservice.h new file mode 100644 index 000000000..30b2b5864 --- /dev/null +++ b/zenserver/auth/authservice.h @@ -0,0 +1,22 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +#pragma once + +#include <zenhttp/httpserver.h> + +namespace zen { + +class HttpAuthService final : public zen::HttpService +{ +public: + HttpAuthService(); + virtual ~HttpAuthService(); + + virtual const char* BaseUri() const override; + virtual void HandleRequest(zen::HttpServerRequest& Request) override; + +private: + HttpRequestRouter m_Router; +}; + +} // namespace zen |