relish/form/urls.py
2022-02-15 17:59:28 -05:00

7 lines
118 B
Python

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