This repository has been archived on 2022-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
microservices/api/views.py

9 lines
190 B
Python
Raw Normal View History

2022-05-08 07:32:22 +02:00
from django.shortcuts import render
# Create your views here.
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. You're at the polls index.")