Prathamesh Sarjerao Vaidya
modularize both backend and frontend js part
a601b1d
raw
history blame contribute delete
529 Bytes
"""
Data models for API requests and responses
"""
from .requests import (
VideoUploadResponse,
AnalysisStartRequest,
AnalysisStartResponse
)
from .responses import (
HealthResponse,
SessionInfo,
SessionListResponse,
ResultsResponse,
ErrorResponse
)
__all__ = [
# Requests
'VideoUploadResponse',
'AnalysisStartRequest',
'AnalysisStartResponse',
# Responses
'HealthResponse',
'SessionInfo',
'SessionListResponse',
'ResultsResponse',
'ErrorResponse'
]