mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
25542f929e
Will fail build if imports are not sorted correctly
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),
|
|
]
|