Files
Tablequizwiki/content/urls.py

7 lines
159 B
Python
Raw Normal View History

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