diff options
| author | Stefan Boberg <[email protected]> | 2023-05-02 10:01:47 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-02 10:01:47 +0200 |
| commit | 075d17f8ada47e990fe94606c3d21df409223465 (patch) | |
| tree | e50549b766a2f3c354798a54ff73404217b4c9af /zenserver/auth/authservice.h | |
| parent | fix: bundle shouldn't append content zip to zen (diff) | |
| download | zen-075d17f8ada47e990fe94606c3d21df409223465.tar.xz zen-075d17f8ada47e990fe94606c3d21df409223465.zip | |
moved source directories into `/src` (#264)
* moved source directories into `/src`
* updated bundle.lua for new `src` path
* moved some docs, icon
* removed old test trees
Diffstat (limited to 'zenserver/auth/authservice.h')
| -rw-r--r-- | zenserver/auth/authservice.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/zenserver/auth/authservice.h b/zenserver/auth/authservice.h deleted file mode 100644 index 64b86e21f..000000000 --- a/zenserver/auth/authservice.h +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright Epic Games, Inc. All Rights Reserved. - -#pragma once - -#include <zenhttp/httpserver.h> - -namespace zen { - -class AuthMgr; - -class HttpAuthService final : public zen::HttpService -{ -public: - HttpAuthService(AuthMgr& AuthMgr); - virtual ~HttpAuthService(); - - virtual const char* BaseUri() const override; - virtual void HandleRequest(zen::HttpServerRequest& Request) override; - -private: - AuthMgr& m_AuthMgr; - HttpRequestRouter m_Router; -}; - -} // namespace zen |