3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-07-07 06:04:05 +00:00
coope/search/urls.py
2019-09-23 12:44:32 +02:00

8 lines
135 B
Python

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