27 lines
696 B
Python
27 lines
696 B
Python
from app.models.user import User, RefreshToken
|
|
from app.models.organization import Organization
|
|
from app.models.championship import Championship
|
|
from app.models.registration import Registration
|
|
from app.models.participant import ParticipantList
|
|
from app.models.notification import NotificationLog
|
|
from app.models.discipline import Discipline
|
|
from app.models.style import Style
|
|
from app.models.fee import Fee
|
|
from app.models.rule import Rule
|
|
from app.models.judge import Judge
|
|
|
|
__all__ = [
|
|
"User",
|
|
"RefreshToken",
|
|
"Organization",
|
|
"Championship",
|
|
"Registration",
|
|
"ParticipantList",
|
|
"NotificationLog",
|
|
"Discipline",
|
|
"Style",
|
|
"Fee",
|
|
"Rule",
|
|
"Judge",
|
|
]
|