6 lines
150 B
Python
6 lines
150 B
Python
def application(environ, start_response):
|
|
body = "v2".encode()
|
|
|
|
start_response('200', [('Content-Length', str(len(body)))])
|
|
return [body]
|