mirror of
https://github.com/yawaflua/SpCloudCore.git
synced 2025-12-09 20:19:35 +02:00
11 lines
142 B
C++
11 lines
142 B
C++
class AuthorizationService
|
|
{
|
|
|
|
public:
|
|
bool is_user_authorized()
|
|
{
|
|
return true;//Todo implement logic for authorization processing
|
|
}
|
|
};
|
|
|