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