volsu-contests/backend/app/schemas/__init__.py
2025-11-30 19:55:50 +03:00

48 lines
931 B
Python

from app.schemas.user import (
UserCreate,
UserLogin,
UserResponse,
Token,
)
from app.schemas.contest import (
ContestCreate,
ContestUpdate,
ContestResponse,
ContestListResponse,
)
from app.schemas.problem import (
ProblemCreate,
ProblemUpdate,
ProblemResponse,
ProblemListResponse,
TestCaseCreate,
TestCaseResponse,
SampleTestResponse,
)
from app.schemas.submission import (
SubmissionCreate,
SubmissionResponse,
SubmissionListResponse,
)
__all__ = [
"UserCreate",
"UserLogin",
"UserResponse",
"Token",
"ContestCreate",
"ContestUpdate",
"ContestResponse",
"ContestListResponse",
"ProblemCreate",
"ProblemUpdate",
"ProblemResponse",
"ProblemListResponse",
"TestCaseCreate",
"TestCaseResponse",
"SampleTestResponse",
"SubmissionCreate",
"SubmissionResponse",
"SubmissionListResponse",
]