__init__.py 203 B

12345678
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. from fastapi import APIRouter
  4. from .hkvideo import router as hkvideo_router
  5. router = APIRouter()
  6. router.include_router(hkvideo_router, prefix="/hkvideo")