website/conservancy/contractpatch/urls.py
Ben Sturmfels 2a99a0c81a
Switch from url() to path()
Path is the new way to handle simpler routing rules.
2024-03-18 17:51:33 +11:00

7 lines
119 B
Python

from django.urls import path
from . import views as cpatch_views
urlpatterns = [
path('', cpatch_views.index),
]