django-helpdeskmig/helpdesk/tests/urls.py

9 lines
190 B
Python
Raw Normal View History

from django.contrib import admin
from django.urls import include, path
urlpatterns = [
2022-06-20 16:34:32 +02:00
path('', include('helpdesk.urls', namespace='helpdesk')),
2022-03-17 03:29:09 +01:00
path('admin/', admin.site.urls),
]