website/conservancy/contacts/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
103 B
Python

from django.urls import path
from .views import subscribe
urlpatterns = [
path('', subscribe),
]