Spaces:
Running
Running
| """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", | |
| ] | |