repair-agent 88b8f023f4
Some checks failed
Build and Deploy Backend / build-and-deploy (push) Failing after 1m36s
Fix app api
2026-02-09 15:35:33 +08:00

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)),
]