Files
nginx-unit/test/python/restart/v1.py
Andrei Zeliankou 39adb292d5 Tests: style.
2021-10-18 01:10:11 +01:00

6 lines
150 B
Python

def application(environ, start_response):
body = "v1".encode()
start_response('200', [('Content-Length', str(len(body)))])
return [body]