This commit is contained in:
maciejrusek
2026-03-10 20:53:37 +01:00
commit 624ef3ca16
29 changed files with 454 additions and 0 deletions

6
backend/config/urls.py Normal file
View File

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