diff options
author | 2020-12-08 10:41:52 +0200 | |
---|---|---|
committer | 2020-12-08 10:41:52 +0200 | |
commit | 8e0a9a634e9bcc50ccad36ca1304e4e27f2992b1 (patch) | |
tree | 4f38ebaa311b2e0b317fd2a87ded030063f3e9ae /backend/models | |
parent | Create DiscordUser Pydantic model for form response (diff) |
Add AntiSpam and DiscordUser models to __init__.py
Diffstat (limited to 'backend/models')
-rw-r--r-- | backend/models/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/backend/models/__init__.py b/backend/models/__init__.py index 80abf6f..a85dc2c 100644 --- a/backend/models/__init__.py +++ b/backend/models/__init__.py @@ -1,4 +1,6 @@ +from .antispam import AntiSpam +from .discord_user import DiscordUser from .form import Form from .question import Question -__all__ = ["Form", "Question"] +__all__ = ["AntiSpam", "DiscordUser", "Form", "Question"] |