2019-09-16 01:24:15 +02:00
|
|
|
from django.http import HttpResponse
|
|
|
|
|
from django.shortcuts import render
|
|
|
|
|
|
2019-09-22 23:14:26 +02:00
|
|
|
|
2019-09-16 01:24:15 +02:00
|
|
|
# Create your views here.
|
|
|
|
|
def index(request):
|
2019-09-22 23:14:26 +02:00
|
|
|
return HttpResponse("Hello worlds!")
|