This commit is contained in:
Redsandy
2026-03-14 18:48:57 +03:00
parent 1d1350fc13
commit 3ea4fb4771
40 changed files with 2150 additions and 0 deletions

17
app/models/__init__.py Normal file
View File

@@ -0,0 +1,17 @@
from app.models.user import User
from app.models.activity import Activity
from app.models.zone import Zone
from app.models.zone_history import ZoneHistory
from app.models.friendship import Friendship
from app.models.score import Score
from app.models.notification import Notification
__all__ = [
"User",
"Activity",
"Zone",
"ZoneHistory",
"Friendship",
"Score",
"Notification",
]