init
This commit is contained in:
17
app/models/__init__.py
Normal file
17
app/models/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user