5 lines
78 B
Python
5 lines
78 B
Python
|
from django import http
|
||
|
|
||
|
def index(request):
|
||
|
return http.HttpResponse('')
|