123456789101112131415161718 |
- from django.shortcuts import render
-
- # Create your views here.
- import hrld.test_imp
-
- from django.db import transaction
-
-
- from django.http import HttpResponse
-
- @transaction.non_atomic_requests
- async def myview(request):
- hrld.test_imp.run_hrld(3)
- return HttpResponse("return this string???./>,.>")
-
-
- print("ABC123+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++===")
|