Files
backend/api/resources/main.py
2025-02-04 15:49:25 -03:00

9 lines
267 B
Python

from rest_framework import status
from rest_framework.response import Response
from rest_framework.views import APIView
class MainResource(APIView):
def get(self, request):
return Response({'message': 'Welcome to the game!'}, status=status.HTTP_200_OK)