Files
lagomareGateKeeperBot/src/models/__init__.py
2025-08-22 02:56:02 +02:00

15 lines
250 B
Python

from .credential import Credential
from .gate import Gate
from .status import Status
from .user import User
from .grant import Grant
from .role import Role
__all__ = [
"Credential",
"Gate",
"Status",
"User",
"Role",
"Grant"
]