diff options
author | 2022-08-13 06:43:05 +0200 | |
---|---|---|
committer | 2022-08-13 06:43:05 +0200 | |
commit | 733d5c084b1cba91a76f495b37ef0a391e5f9900 (patch) | |
tree | e4aa0372617c9da2a7c8b86694d8c29fbaea35ac /pydis_site/apps/content/models | |
parent | Add Content App To Navbar (diff) |
Export Tag Model As Top Level Model Object
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'pydis_site/apps/content/models')
-rw-r--r-- | pydis_site/apps/content/models/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pydis_site/apps/content/models/__init__.py b/pydis_site/apps/content/models/__init__.py index e69de29b..2718ce94 100644 --- a/pydis_site/apps/content/models/__init__.py +++ b/pydis_site/apps/content/models/__init__.py @@ -0,0 +1,3 @@ +from .tag import Tag + +__all__ = ["Tag"] |