IDDRS/search/urls.py
2022-06-17 14:06:51 +02:00

6 lines
115 B
Python

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