mirror of
https://github.com/KevinMidboe/Node-Com-Handler.git
synced 2025-10-29 17:50:27 +00:00
7 lines
185 B
Python
7 lines
185 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 ip index.") |