2 lines
104 B
Python
2 lines
104 B
Python
def main(request, response):
|
|
return b"FAIL" if b'Sec-WebSocket-Key' in request.headers else b"PASS"
|