mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-04-25 11:11:27 +08:00
8 lines
150 B
Python
8 lines
150 B
Python
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r"", views.UserViewSets, base_name='user')
|
|
|