13 lines
293 B
Python
13 lines
293 B
Python
![]() |
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]
|