mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-07 00:03:32 +02:00
9 lines
157 B
Python
9 lines
157 B
Python
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
def index(response):
|
|
return HttpResponse("Welcome to siMed Migration")
|
|
|
|
|
|
|