mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 12:06:44 +00:00
6 lines
112 B
Python
6 lines
112 B
Python
from django.http import HttpResponse
|
|
|
|
|
|
def index(request):
|
|
return HttpResponse("This is the Tracking page")
|