This commit is contained in:
2024-06-23 01:38:44 +02:00
parent 4d7d3fabf4
commit f495482547
15 changed files with 427 additions and 150 deletions

View File

@ -1,11 +1,12 @@
from __future__ import annotations
from django.urls import URLPattern, path
from django.urls import URLPattern, URLResolver, path
from . import views
app_name: str = "core"
urlpatterns: list[URLPattern] = [
urlpatterns: list[URLPattern | URLResolver] = [
path(route="", view=views.index, name="index"),
]