1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/search/urls.py
2022-04-11 23:52:19 +02:00

9 lines
207 B
Python

from django.urls import path
from search import views
urlpatterns = [
path("", views.SearchResultsView.as_view(), name="search"),
path("autocomplete/", views.autocomplete, name="autocomplete"),
]