website/conservancy/contractpatch/urls.py
Ben Sturmfels cc938b7661 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),
]