mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-03-05 02:31:42 +01:00
8 lines
198 B
Python
8 lines
198 B
Python
from django.urls import include, path
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = [
|
|
path('helpdesk/', include('helpdesk.urls', namespace='helpdesk')),
|
|
path('admin/', admin.site.urls),
|
|
]
|