mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-03-20 12:15:49 +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.TaskViewSets, base_name='task')
|
|
|