indexcalculation/基本信用评级指标/规模/__init__.py

8 lines
169 B
Python
Raw Normal View History

2022-12-22 15:34:49 +08:00
from fastapi import APIRouter
from 基本信用评级指标.规模 import 营业收入
router = APIRouter(tags=["规模"])
router.include_router(营业收入.router)