12 lines
211 B
Python
12 lines
211 B
Python
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"),
|
|
]
|