Tesis 1.0.0
Loading...
Searching...
No Matches
views.py
Go to the documentation of this file.
1from rest_framework import viewsets
2from .models import Producto
3from .serializers import ProductoSerializer
4
5# Create your views here.
6
7
8class ProductoViewSet(viewsets.ModelViewSet):
9 serializer_class = ProductoSerializer
10 queryset = Producto.objects.all()