Add Judge model for championships

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dianaka123
2026-02-27 14:05:05 +03:00
parent b5fa1fe746
commit 7e123f1a31
2 changed files with 24 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ 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",
@@ -21,4 +22,5 @@ __all__ = [
"Style",
"Fee",
"Rule",
"Judge",
]