move code into newly created ./src/ dir

This commit is contained in:
Disco DeDisco
2026-01-03 23:36:38 -05:00
parent 011fca41ef
commit ab96364a24
23 changed files with 0 additions and 0 deletions

9
src/core/urls.py Normal file
View File

@@ -0,0 +1,9 @@
# from django.contrib import admin
from django.urls import include, path
from apps.dashboard import views as list_views
urlpatterns = [
# path('admin/', admin.site.urls),
path('', list_views.home_page, name='home'),
path('apps/dashboard/', include('apps.dashboard.urls')),
]