5 lines
142 B
Python
5 lines
142 B
Python
def main(request, response):
|
|
headers = [(b"Content-type", b"text/html;charset=utf-8")]
|
|
content = b"\xff"
|
|
|
|
return headers, content
|