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 22:43:06 +02:00

8 lines
137 B
Python

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