AIdeaText commited on
Commit
7ce2900
·
verified ·
1 Parent(s): 6d577d6

Update modules/discourse/__init__.py

Browse files
Files changed (1) hide show
  1. modules/discourse/__init__.py +17 -0
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
+ ]