Some checks failed
Build and Deploy Backend / build-and-deploy (push) Failing after 1m36s
14 lines
282 B
Python
14 lines
282 B
Python
"""
|
|
音乐模块URL配置
|
|
"""
|
|
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from .views import MusicViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register('', MusicViewSet, basename='music')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|