🪄 Formats AuthenticationService

This commit is contained in:
Rune Harlyk
2024-07-09 20:02:29 +02:00
committed by Rune Harlyk
parent 4952be1b47
commit 227610fcb9
2 changed files with 14 additions and 17 deletions
@@ -24,14 +24,13 @@
#if FT_ENABLED(FT_SECURITY)
class AuthenticationService
{
public:
class AuthenticationService {
public:
AuthenticationService(PsychicHttpServer *server, SecurityManager *securityManager);
void begin();
private:
private:
SecurityManager *_securityManager;
PsychicHttpServer *_server;
};