Update modules/__init__.py
Browse files- modules/__init__.py +6 -0
modules/__init__.py
CHANGED
|
@@ -8,6 +8,9 @@ from .database import (
|
|
| 8 |
store_morphosyntax_result,
|
| 9 |
store_semantic_result,
|
| 10 |
store_chat_history
|
|
|
|
|
|
|
|
|
|
| 11 |
)
|
| 12 |
|
| 13 |
from .ui import (
|
|
@@ -56,6 +59,9 @@ __all__ = [
|
|
| 56 |
'store_morphosyntax_result',
|
| 57 |
'store_semantic_result',
|
| 58 |
'store_chat_history',
|
|
|
|
|
|
|
|
|
|
| 59 |
'login_register_page',
|
| 60 |
'login_form',
|
| 61 |
'register_form',
|
|
|
|
| 8 |
store_morphosyntax_result,
|
| 9 |
store_semantic_result,
|
| 10 |
store_chat_history
|
| 11 |
+
create_user,
|
| 12 |
+
create_admin_user,
|
| 13 |
+
create_student_user
|
| 14 |
)
|
| 15 |
|
| 16 |
from .ui import (
|
|
|
|
| 59 |
'store_morphosyntax_result',
|
| 60 |
'store_semantic_result',
|
| 61 |
'store_chat_history',
|
| 62 |
+
'create_user',
|
| 63 |
+
'create_admin_user',
|
| 64 |
+
'create_student_user',
|
| 65 |
'login_register_page',
|
| 66 |
'login_form',
|
| 67 |
'register_form',
|