mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-07 20:15:24 +00:00
11 lines
264 B
Python
11 lines
264 B
Python
from rest_framework import routers
|
|
|
|
from .views import SearchView, DownloadView
|
|
|
|
router = routers.DefaultRouter()
|
|
|
|
router.register(r"search", SearchView, basename="search")
|
|
router.register(r"download", DownloadView, basename="download")
|
|
|
|
urlpatterns = router.urls
|