mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-07 12:05:35 +00:00
10 lines
186 B
Python
10 lines
186 B
Python
from rest_framework import routers
|
|
|
|
from .views import SearchView
|
|
|
|
router = routers.DefaultRouter()
|
|
|
|
router.register(r"search", SearchView, basename="search")
|
|
|
|
urlpatterns = router.urls
|