mirror of
https://github.com/UofCBaja/Interview-Backend.git
synced 2025-06-15 13:24:19 -06:00
8 lines
193 B
Python
8 lines
193 B
Python
# 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.") |