website/www/conservancy/apps/contractpatch/urls.py
Ben Sturmfels 7f7be02379 Switch to relative imports
The relative imports make it clearer what code is within the project and where
it's coming from.
2023-10-20 09:45:53 +11:00

7 lines
132 B
Python

from django.conf.urls import url, include
from . import views as cpatch_views
urlpatterns = [
url(r'', cpatch_views.index),
]