django-helpdeskmig/helpdesk/tests/urls.py

6 lines
133 B
Python
Raw Normal View History

from django.conf.urls import include, url
urlpatterns = [
url(r'^helpdesk/', include('helpdesk.urls', namespace='helpdesk')),
]