10 lines
218 B
Python
10 lines
218 B
Python
#
|
|
|
|
from django.shortcuts import render
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
# Create your views here.
|
|
|
|
def index(request: HttpRequest | None) -> HttpResponse:
|
|
return render(request, 'index.html', {})
|