1def application(environ, start_response):
2    start_response('200 OK', [('Content-type', 'text/html'),
3                              ('test-header', 'TEST!')])
4    return [b'test1']
5
6