first
This commit is contained in:
17
backend/app/models/__init__.py
Normal file
17
backend/app/models/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user