Initial certificate system
This commit is contained in:
19
backend/app/models/__init__.py
Normal file
19
backend/app/models/__init__.py
Normal file
@@ -0,0 +1,19 @@
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user