18 lines
337 B
Python
18 lines
337 B
Python
"""
|
|
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",
|
|
]
|