mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-05-04 04:33:38 +08:00
8 lines
157 B
Python
8 lines
157 B
Python
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r"", views.SubsonicViewSet, base_name='subsonic')
|
|
|