mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
6 lines
126 B
Python
6 lines
126 B
Python
from django.http import HttpResponse
|
|
|
|
|
|
def index(request):
|
|
return HttpResponse("Choo Choo! This is your Django app 🚅")
|