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