blob: 30b2b586407698f3e6c0049b5773af2c14ee5d7d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|