Refactor project folders.

Move helpdesk to src folder.
Move tests to project base folder.
This commit is contained in:
Christopher Broderick
2025-08-19 23:20:34 +01:00
parent b7b989218e
commit d5502322ec
2269 changed files with 4 additions and 80 deletions

8
tests/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path("", include("helpdesk.urls", namespace="helpdesk")),
path("admin/", admin.site.urls),
]