Changes committed
This commit is contained in:
43
docengine/app/models/__init__.py
Normal file
43
docengine/app/models/__init__.py
Normal file
@@ -0,0 +1,43 @@
|
||||
from app.models.user import AuditLog, RefreshToken, Role, User, user_roles_table
|
||||
from app.models.document import (
|
||||
Document,
|
||||
DocumentImage,
|
||||
DocumentPage,
|
||||
DocumentTable,
|
||||
DocumentTextBlock,
|
||||
TemplateMatch,
|
||||
)
|
||||
from app.models.template import (
|
||||
DocumentCell,
|
||||
DocumentFormat,
|
||||
DocumentRegion,
|
||||
ImageRegion,
|
||||
TableColumn,
|
||||
TableFormat,
|
||||
TableRow,
|
||||
TemplateFingerprint,
|
||||
Watermark,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"User",
|
||||
"Role",
|
||||
"RefreshToken",
|
||||
"AuditLog",
|
||||
"user_roles_table",
|
||||
"Document",
|
||||
"DocumentPage",
|
||||
"DocumentTextBlock",
|
||||
"DocumentImage",
|
||||
"DocumentTable",
|
||||
"TemplateMatch",
|
||||
"DocumentFormat",
|
||||
"DocumentCell",
|
||||
"DocumentRegion",
|
||||
"TableFormat",
|
||||
"TableColumn",
|
||||
"TableRow",
|
||||
"Watermark",
|
||||
"ImageRegion",
|
||||
"TemplateFingerprint",
|
||||
]
|
||||
Reference in New Issue
Block a user