python
import fapws._evwsgi as evwsgi
from fapws import base
def application(environ, start_response):
status = '200 OK'
response_headers = [('Content-type', 'text/html')]
start_response(status, response_headers)
return [b"Hello, World!"]
evwsgi.start("0.0.0.0", "8080")
evwsgi.set_base_module(base)
evwsgi.wsgi_cb(("", application))
evwsgi.run()