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