mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2026-07-01 19:14:21 +00:00
7 lines
194 B
C++
7 lines
194 B
C++
#include "AuthMiddleware.h"
|
|
#include "AuthTokenHandler.h"
|
|
|
|
bool AuthMiddleware::Process(HTTPContext& context, HTTPReply& reply) {
|
|
return AuthTokenHandler::ProcessHTTPContext(context, reply);
|
|
}
|