diff options
author | 2019-08-15 11:28:25 +0200 | |
---|---|---|
committer | 2019-08-23 15:40:51 +0200 | |
commit | dc2a771c994c5a7dad3b8453270ca2bfb74a414b (patch) | |
tree | 9ed21a520802af37ab1d8b6c30870a7ec20e9b1c /pydis_site/apps/staff/apps.py | |
parent | Merge pull request #236 from python-discord/django-roles-api-add-position (diff) |
Adding initial staff app to Django
Diffstat (limited to 'pydis_site/apps/staff/apps.py')
-rw-r--r-- | pydis_site/apps/staff/apps.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pydis_site/apps/staff/apps.py b/pydis_site/apps/staff/apps.py new file mode 100644 index 00000000..fb8bda03 --- /dev/null +++ b/pydis_site/apps/staff/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig + + +class StaffConfig(AppConfig): + """Django AppConfig for the staff app.""" + + name = 'staff'
\ No newline at end of file |