sentence-finder/urls.py
2018-10-28 01:00:38 +00:00

8 lines
172 B
Python
Executable File

""" urlpatterns for this application."""
from django.urls import path
from . import views
app_name = "sentence_finder"
urlpatterns = [
path('', views.index, name="find")
]