Spaces:
Running
Running
File size: 826 Bytes
7b8993a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | """Models package."""
from app.models.funding_rate import (
FundingRateBase,
FundingRateWithScore,
FundingRateResponse,
TopFundingRateResponse,
)
from app.models.stats import StatsResponse, FRStat
from app.models.alert import AlertConfig, AlertItem, AlertCheckResponse
from app.models.watchlist import (
WatchlistItem,
WatchlistItemWithFR,
WatchlistResponse,
AddWatchlistRequest,
FRHistoryRecord,
FRHistoryResponse,
)
__all__ = [
"FundingRateBase",
"FundingRateWithScore",
"FundingRateResponse",
"TopFundingRateResponse",
"StatsResponse",
"FRStat",
"AlertConfig",
"AlertItem",
"AlertCheckResponse",
"WatchlistItem",
"WatchlistItemWithFR",
"WatchlistResponse",
"AddWatchlistRequest",
"FRHistoryRecord",
"FRHistoryResponse",
]
|