7 lines
159 B
Python
7 lines
159 B
Python
|
|
from django.urls.conf import path
|
||
|
|
from content.views import public
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('questions/', public.search_question, name='search-questions'),
|
||
|
|
]
|