
* Created FastAPI application structure * Added database models for assets, exchanges, markets, and rates * Integrated with CoinCap API * Implemented REST API endpoints * Setup SQLite persistence with Alembic migrations * Added comprehensive documentation Generated with BackendIM... (backend.im)
4 lines
164 B
Python
4 lines
164 B
Python
from app.models.asset import Asset, AssetPriceHistory
|
|
from app.models.exchange import Exchange
|
|
from app.models.market import Market
|
|
from app.models.rate import Rate |