Refactor users creating separate classes, service and repository

This commit is contained in:
Alessandro Franchini
2025-08-22 02:56:02 +02:00
parent 58c0916deb
commit 1d423c5ea2
16 changed files with 309 additions and 276 deletions

View File

@@ -1,12 +1,15 @@
from .credential import Credential
from .gate import Gate
from .status import Status
from .users import Users, Role
from .user import User
from .grant import Grant
from .role import Role
__all__ = [
"Credential",
"Gate",
"Status",
"Users",
"Role"
"User",
"Role",
"Grant"
]