13 lines
338 B
Python
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 HelloItemView(generics.GenericAPIView):
|
|
|
|
def get(self, request):
|
|
return Response(data={"message": "Hello Item"},
|
|
status=status.HTTP_200_OK)
|