mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-23 00:13:32 +01:00
6 lines
133 B
Python
6 lines
133 B
Python
from django.conf.urls import include, url
|
|
|
|
urlpatterns = [
|
|
url(r'^helpdesk/', include('helpdesk.urls', namespace='helpdesk')),
|
|
]
|