20 lines
558 B
Python
20 lines
558 B
Python
from app.models.admin import AdminUser, Role
|
|
from app.models.certificate import Certificate, CertificateAccessToken, ProjectCourse
|
|
from app.models.import_batch import ImportBatch, ImportBatchRow
|
|
from app.models.learner import Learner, LearnerNameHistory, LearnerPhoneHistory
|
|
from app.models.log import OperationLog
|
|
|
|
__all__ = [
|
|
"AdminUser",
|
|
"Certificate",
|
|
"CertificateAccessToken",
|
|
"ImportBatch",
|
|
"ImportBatchRow",
|
|
"Learner",
|
|
"LearnerNameHistory",
|
|
"LearnerPhoneHistory",
|
|
"OperationLog",
|
|
"ProjectCourse",
|
|
"Role",
|
|
]
|