Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
from rest_framework.viewsets import GenericViewSet

from drf_multiple_model.mixins import FlatMultipleModelMixin, ObjectMultipleModelMixin


class FlatMultipleModelAPIViewSet(FlatMultipleModelMixin, GenericViewSet):
    def get_queryset(self):
        return None


class ObjectMultipleModelAPIViewSet(ObjectMultipleModelMixin, GenericViewSet):
    def get_queryset(self):
        return None