Zaws / app /routers /screenshot /__init__.py
SilentWraith's picture
version 1.0
de68d43
raw
history blame contribute delete
146 Bytes
from fastapi import APIRouter
from .screenshot import router as screenshot_router
router = APIRouter()
router.include_router(screenshot_router)