31 lines
551 B
Python
31 lines
551 B
Python
"""Pydantic schemas for API validation and serialization"""
|
|
|
|
from .user_schemas import (
|
|
TokenResponse,
|
|
UserCreate,
|
|
UserLogin,
|
|
UserResponse,
|
|
)
|
|
from .scan_schemas import (
|
|
ScanRequest,
|
|
ScanResponse,
|
|
)
|
|
from .test_result_schemas import (
|
|
TestResultCreate,
|
|
TestResultResponse,
|
|
)
|
|
|
|
__all__ = [
|
|
# User schemas
|
|
"UserCreate",
|
|
"UserLogin",
|
|
"UserResponse",
|
|
"TokenResponse",
|
|
# Scan schemas
|
|
"ScanRequest",
|
|
"ScanResponse",
|
|
# Test result schemas
|
|
"TestResultCreate",
|
|
"TestResultResponse",
|
|
]
|