Ajouter auth.h

This commit is contained in:
2026-02-13 12:58:30 +00:00
parent b1df8907a2
commit 570ede7a2c

9
auth.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef AUTH_H
#define AUTH_H
#include <string>
#include "user.h"
int authentifier(std::string login, std::string password);
#endif