mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2025-08-07 14:09:06 +02: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')),
|
|
]
|