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
2023-02-16 13:11:32 +01:00

13 lines
346 B
Python

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