Files
patch-service/routers/__init__.py
2026-09-09 18:42:37 +08:00

12 lines
252 B
Python

from .patch import router as patch_router
from .crop import router as crop_router
from .record import router as record_router
from .file import router as file_router
routers = [
patch_router,
crop_router,
record_router,
file_router,
]