Cybersecurity-Projects/PROJECTS/api-security-scanner/backend/schemas/__init__.py

34 lines
573 B
Python

"""
ⒸAngelaMos | 2025
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",
]