mirror of
https://github.com/nanoy42/coope
synced 2024-11-05 09:26:27 +00:00
8 lines
135 B
Python
8 lines
135 B
Python
|
from django.urls import path
|
||
|
|
||
|
from . import views
|
||
|
|
||
|
app_name="search"
|
||
|
urlpatterns = [
|
||
|
path('search', views.search, name="search"),
|
||
|
]
|