diff options
author | 2020-09-20 10:53:44 +0300 | |
---|---|---|
committer | 2020-09-20 10:53:44 +0300 | |
commit | 400d773575463d587489b40275ee92069a6c309c (patch) | |
tree | ad8447fde35f6fd240d2f9ebd30a855db7eb28fd | |
parent | Create view for displaying guide categories (diff) |
Add __init__.py to guides app views directory
-rw-r--r-- | pydis_site/apps/guides/views/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pydis_site/apps/guides/views/__init__.py b/pydis_site/apps/guides/views/__init__.py new file mode 100644 index 00000000..17a244c1 --- /dev/null +++ b/pydis_site/apps/guides/views/__init__.py @@ -0,0 +1,5 @@ +from .category import CategoryView +from .guide import GuideView +from .guides import GuidesView + +__all__ = ["GuideView", "GuidesView", "CategoryView"] |