8 lines
150 B
Python
8 lines
150 B
Python
from django.urls import path
|
|
from .views import SearchView
|
|
|
|
app_name = "search"
|
|
|
|
urlpatterns = [
|
|
path("", SearchView.as_view(), name="search"),
|
|
]
|