__init__.py 235 B

123456
  1. from flask import Blueprint
  2. bp = Blueprint("data_service", __name__)
  3. # 导入 routes 模块以注册路由(副作用导入)
  4. from app.api.data_service import routes # noqa: E402, F401, I001 # pyright: ignore[reportUnusedImport]