mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 06:09:24 +02:00
8 lines
215 B
Python
8 lines
215 B
Python
from django.conf.urls import url
|
|
|
|
from .views import APISearch, APISearchs
|
|
|
|
urlpatterns = [
|
|
url(r"^search/$", APISearch.as_view(), name="search"),
|
|
url(r"^searchs/$", APISearchs.as_view(), name="searchs"),
|
|
]
|