diff options
author | 2020-11-30 20:26:15 +0200 | |
---|---|---|
committer | 2020-11-30 20:26:15 +0200 | |
commit | a3c6268ddc8a42c3718157ce7cdbce548629dd7f (patch) | |
tree | a979a3ef79aa9efeb9a070d4c8039c065ab3b578 | |
parent | Create form object model (diff) |
Add question and form models to __init__.py
-rw-r--r-- | backend/models/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backend/models/__init__.py b/backend/models/__init__.py index e69de29..80abf6f 100644 --- a/backend/models/__init__.py +++ b/backend/models/__init__.py @@ -0,0 +1,4 @@ +from .form import Form +from .question import Question + +__all__ = ["Form", "Question"] |