mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-04 17:05:36 +02: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),
|
|
]
|