Files

8 lines
113 B
Python

from django.urls import path
from .views import index
urlpatterns = [
path("", index, name="orm.index"),
]