devicehub-django/snapshot/views.py
Cayo Puigdefabregas 80668b3ec8 base of proyect
2024-06-12 09:32:49 +02:00

12 lines
293 B
Python

# from django.shortcuts import render
from rest_framework import viewsets
from snapshot.models import Snapshot
from snapshot.serializers import SnapshotSerializer
class SnapshotViewSet(viewsets.ModelViewSet):
queryset = Snapshot.objects.all()
serializer_class = SnapshotSerializer