forked from extern/django-helpdesk
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),
|
|
]
|