6 lines
115 B
Python
6 lines
115 B
Python
|
from django.urls import path
|
||
|
from search import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('', views.search, name='search'),
|
||
|
]
|