This repository has been archived on 2023-02-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
django-quasar-lista-compra/authentication/views.py
clonbg b07813a859 Primer commit
iniciando proyecto
2023-02-16 11:40:04 +01:00

13 lines
338 B
Python

# from django.shortcuts import render
from rest_framework import generics, status
from rest_framework.response import Response
# Create your views here.
class HelloAuthView(generics.GenericAPIView):
def get(self, request):
return Response(data={"message": "Hello Auth"},
status=status.HTTP_200_OK)