import os
import sys
import x

sys.path.insert(0, os.path.dirname(__file__))


def application(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/plain')])
    responz = "<html><h1>YO!</h1>"
    return [x.response.encode('utf8')]
