mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 17:39:31 +02:00
8 lines
224 B
Python
8 lines
224 B
Python
from django.conf.urls import include, url
|
|
from .views import APISearch, APISearchs
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^search/$', APISearch.as_view(), name='search'),
|
|
url(r'^searchs/$', APISearchs.as_view(), name='searchs'),
|
|
]
|