Files
music-tag-web/applications/task/views.py
charlesxie 69a0b2dff3 登录
2023-03-06 10:08:20 +08:00

10 lines
278 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from rest_framework import mixins
from rest_framework.response import Response
from component.drf.viewsets import GenericViewSet
class TaskViewSets(mixins.ListModelMixin, GenericViewSet):
def list(self, request, *args, **kwargs):
return Response({"name": ""})