mirror of
https://github.com/yawaflua/SpCloudCore.git
synced 2025-12-10 04:29:35 +02:00
20 lines
223 B
C++
20 lines
223 B
C++
#include "../Models/User.cpp"
|
|
|
|
|
|
class AuthorizationService
|
|
{
|
|
|
|
public:
|
|
bool is_user_authorized(User user)
|
|
{
|
|
return true;//Todo implement logic for authorization processing
|
|
}
|
|
|
|
void register_user(User user) {
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|