4 lines
148 B
Python
Raw Normal View History

2023-06-04 21:42:42 +05:30
from django.http import JsonResponse
2023-06-04 20:23:15 +05:30
2023-06-04 21:42:42 +05:30
def api_home(request,*args,**kwargs):
return JsonResponse({"message":"This is my 1st Django api project"})