from __future__ import annotations from django.urls import URLPattern, path from . import views app_name: str = "core" urlpatterns: list[URLPattern] = [ path(route="", view=views.index, name="index"), ]