daren_project/operation/urls.py
2025-04-29 10:22:57 +08:00

12 lines
397 B
Python

from django.urls import path, include
from rest_framework.routers import DefaultRouter
from .views import OperatorAccountViewSet, PlatformAccountViewSet, VideoViewSet
router = DefaultRouter()
router.register(r'operators', OperatorAccountViewSet)
router.register(r'platforms', PlatformAccountViewSet)
router.register(r'videos', VideoViewSet)
urlpatterns = [
path('', include(router.urls)),
]