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