This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
mochaserverpine64backup/mocha.py

13 lines
293 B
Python
Raw Normal View History

2018-04-06 00:31:31 -05:00
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]