django-helpdeskmig/helpdesk/tests/urls.py

8 lines
189 B
Python
Raw Normal View History

2022-03-17 03:29:09 +01:00
from django.urls import include, path
from django.contrib import admin
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),
]