feat: add initial django scouting domain models baseline

This commit is contained in:
2026-04-06 19:07:53 +02:00
parent 2994089f1e
commit d5b00eee98
16 changed files with 540 additions and 0 deletions

6
app/hoopscout/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),
]