__init__.py 268 B

12345678910
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. from fastapi import APIRouter
  4. from .index import router as index_router
  5. from .ywtg import router as ywtg_router
  6. router = APIRouter()
  7. router.include_router(index_router)
  8. router.include_router(ywtg_router, prefix="/ywtg")