mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-04-25 19:20:41 +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')
|
|
|