Add working prototype

This commit is contained in:
2024-06-22 05:33:42 +02:00
parent 67dc4639a0
commit e8f7e55135
60 changed files with 982 additions and 19571 deletions

10
config/urls.py Normal file
View File

@ -0,0 +1,10 @@
from django.contrib import admin
from django.urls import include, path
from django.urls.resolvers import URLResolver
app_name: str = "config"
urlpatterns: list[URLResolver] = [
path(route="admin/", view=admin.site.urls),
path(route="", view=include(arg="core.urls")),
]