#ifndef AUTHSERVICE_H #define AUTHSERVICE_H #include "../database/Database.h" #include "../models/User.h" #include class AuthService { public: static User* login(Database& db, const std::string& username, const std::string& password); }; #endif