19 lines
509 B
Python
19 lines
509 B
Python
from app.crud.crud_user import user
|
|
from app.crud.crud_role import role
|
|
from app.crud.crud_student import student
|
|
from app.crud.crud_exam import exam
|
|
from app.crud.crud_question import question
|
|
from app.crud.crud_question_option import question_option
|
|
from app.crud.crud_exam_result import exam_result
|
|
from app.crud.crud_student_answer import student_answer
|
|
|
|
__all__ = [
|
|
"user",
|
|
"role",
|
|
"student",
|
|
"exam",
|
|
"question",
|
|
"question_option",
|
|
"exam_result",
|
|
"student_answer"
|
|
] |