7 lines
128 B
Python
7 lines
128 B
Python
from django.urls import path
|
|
from .views import SearchView
|
|
|
|
urlpatterns = [
|
|
path('', SearchView.as_view(), name='query'),
|
|
]
|