Created modules and organized code

This commit is contained in:
2025-05-23 00:06:26 +02:00
parent 020b5e0193
commit 3088a75a7d
17 changed files with 340 additions and 248 deletions

12
models/__init__.py Normal file
View File

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