Initial commit

This commit is contained in:
Corder Guy 2018-04-06 00:31:31 -05:00
commit 097ad5f457

12
mocha.py Normal file
View file

@ -0,0 +1,12 @@
import sys
def application(environ, start_response):
status = '200 OK'
output = b'Sup, y\'all.\n'
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output]