summaryrefslogtreecommitdiffhomepage
path: root/test/python/restart/v1.py
blob: 2e45b269c0d0ad878ab36b627cbc3b9fb59dfcfa (plain) (blame)
1
2
3
4
5
6
7
import os

def application(environ, start_response):
    body = "v1".encode()

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