python
from bjoern import run
def application(environ, start_response):
response_headers = [('Content-type', 'text/plain')]
start_response('200 OK', response_headers)
return [b'Hello, World!']
if __name__ == '__main__':
run(application, '0.0.0.0', 8000)