diff options
Diffstat (limited to 'pydis_django/hosts.py')
-rw-r--r-- | pydis_django/hosts.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/pydis_django/hosts.py b/pydis_django/hosts.py deleted file mode 100644 index 898902dc..00000000 --- a/pydis_django/hosts.py +++ /dev/null @@ -1,15 +0,0 @@ -from django.conf import settings -from django_hosts import host, patterns - -host_patterns = patterns( - "pydis_django.urls", - - # > | Subdomain | URL Module | Host entry name | - host(r"admin", "admin", name="admin"), - host(r"api", "api", name="api"), - host(r"staff", "staff", name="staff"), - host(r"wiki", "wiki", name="wiki"), - host(r"ws", "ws", name="ws"), - - host(r".*", "main", name=settings.DEFAULT_HOST) -) |