Refactor gates creating service, repository and tests

This commit is contained in:
Alessandro Franchini
2025-08-22 01:34:25 +02:00
parent 16cf408725
commit 58c0916deb
24 changed files with 251 additions and 89 deletions

12
src/models/__init__.py Normal file
View File

@@ -0,0 +1,12 @@
from .credential import Credential
from .gate import Gate
from .status import Status
from .users import Users, Role
__all__ = [
"Credential",
"Gate",
"Status",
"Users",
"Role"
]