This commit is contained in:
beabigegg
2025-11-12 22:53:17 +08:00
commit da700721fa
130 changed files with 23393 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
"""
Tool_OCR - Database Models
"""
from app.models.user import User
from app.models.ocr import OCRBatch, OCRFile, OCRResult
from app.models.export import ExportRule
from app.models.translation import TranslationConfig
__all__ = [
"User",
"OCRBatch",
"OCRFile",
"OCRResult",
"ExportRule",
"TranslationConfig",
]