kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
9 wiersze
224 B
Python
9 wiersze
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'),
|
||
|
]
|