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-server.py
2018-04-08 20:38:42 -05:00

9 lines
301 B
Python
Executable file

def application(environ, start_response):
status = '200 OK'
output = environ['REQUEST_URI'].encode('UTF-8')
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output]