teste-01 / endpoint_teste /serializer.py
luanpoppe
feat: initial commit
dd19e1b
raw
history blame
231 Bytes
from rest_framework import serializers
from endpoint_teste.models import EndpointTesteModel
class EndpointTesteSerializer(serializers.ModelSerializer):
class Meta:
model = EndpointTesteModel
fields = "__all__"