Created
April 23, 2011 08:42
-
-
Save javisantana/938476 to your computer and use it in GitHub Desktop.
simple wsgi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def application(environ, start_response): | |
status = '200 OK' | |
response_headers = [('Content-type', 'text/plain')] | |
start_response(status, response_headers) | |
return ['rambo'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment