44 lines
832 B
Python
44 lines
832 B
Python
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",
|
|
]
|