forked from extern/django-helpdesk
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')),
|
||
|
]
|