Files
TP-C--/AuthService.h

15 lines
306 B
C++

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