Update modules/discourse/__init__.py
Browse files
modules/discourse/__init__.py
CHANGED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# En /modules/discourse/__init__.py
|
2 |
+
|
3 |
+
from ..database.discourse_mongo_db import (
|
4 |
+
store_student_discourse_result,
|
5 |
+
get_student_discourse_analysis,
|
6 |
+
update_student_discourse_analysis,
|
7 |
+
delete_student_discourse_analysis,
|
8 |
+
get_student_discourse_data
|
9 |
+
)
|
10 |
+
|
11 |
+
__all__ = [
|
12 |
+
'store_student_discourse_result',
|
13 |
+
'get_student_discourse_analysis',
|
14 |
+
'update_student_discourse_analysis',
|
15 |
+
'delete_student_discourse_analysis',
|
16 |
+
'get_student_discourse_data'
|
17 |
+
]
|