mirror of
https://github.com/servo/servo.git
synced 2025-10-10 13:30:20 +01:00
4 lines
186 B
Python
4 lines
186 B
Python
def main(request, response):
|
|
headers = [(b"Content-Type", b"text/javascript")]
|
|
body = u'dprHeader = "%s";' % request.headers.get(b'sec-ch-dpr', '')
|
|
return 200, headers, body
|