Files
Foxel/models/__init__.py
2026-02-09 13:19:28 +08:00

18 lines
243 B
Python

from .database import (
StorageAdapter,
UserAccount,
Role,
UserRole,
RolePermission,
PathRule,
)
__all__ = [
"StorageAdapter",
"UserAccount",
"Role",
"UserRole",
"RolePermission",
"PathRule",
]