34 lines
629 B
Python
34 lines
629 B
Python
"""
|
|
Dashboard Schemas
|
|
|
|
Dashboard API의 요청/응답 스키마를 정의합니다.
|
|
"""
|
|
|
|
from app.dashboard.schemas.dashboard_schema import (
|
|
AudienceData,
|
|
CacheDeleteResponse,
|
|
ConnectedAccount,
|
|
ConnectedAccountsResponse,
|
|
ContentMetric,
|
|
DailyData,
|
|
DashboardResponse,
|
|
MonthlyData,
|
|
PlatformData,
|
|
PlatformMetric,
|
|
TopContent,
|
|
)
|
|
|
|
__all__ = [
|
|
"ConnectedAccount",
|
|
"ConnectedAccountsResponse",
|
|
"ContentMetric",
|
|
"DailyData",
|
|
"MonthlyData",
|
|
"TopContent",
|
|
"AudienceData",
|
|
"PlatformMetric",
|
|
"PlatformData",
|
|
"DashboardResponse",
|
|
"CacheDeleteResponse",
|
|
]
|