mirror of
https://github.com/servo/servo.git
synced 2025-10-11 22:10:18 +01:00
4 lines
118 B
Python
4 lines
118 B
Python
def main(request, response):
|
|
cookie_header = request.headers.get(b"Cookie", b"")
|
|
|
|
return (200, [], cookie_header)
|