Files
nginx-unit/test/python/encoding/wsgi.py
2023-02-21 15:35:38 +00:00

13 lines
225 B
Python

import sys
def application(environ, start_response):
start_response(
'200',
[
('Content-Length', '0'),
('X-Encoding', sys.getfilesystemencoding()),
],
)
return []