indexcalculation/Indicators/Debt/__init__.py

12 lines
200 B
Python
Raw Normal View History

2022-10-13 17:07:52 +08:00
"""
偿债能力
"""
from fastapi import APIRouter
2022-10-13 19:04:16 +08:00
from Indicators.Debt import InterestProtectionMultiples
2022-10-13 17:07:52 +08:00
debt_router = APIRouter()
2022-10-13 19:04:16 +08:00
debt_router.include_router(InterestProtectionMultiples.router)