feat: 初始化工程

This commit is contained in:
2026-09-09 18:42:37 +08:00
commit 31af6e07e2
29 changed files with 1208 additions and 0 deletions

11
routers/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
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,
]