summaryrefslogtreecommitdiffhomepage
path: root/test/python/restart/v1.py
blob: 08f7dd64c878616872aa5ecb3a1a0375bad73b92 (plain) (blame)
1
2
3
4
5
def application(environ, start_response):
    body = "v1".encode()

    start_response('200', [('Content-Length', str(len(body)))])
    return [body]