mirror of
https://github.com/servo/servo.git
synced 2025-07-12 01:43:43 +01:00
3 lines
190 B
Python
3 lines
190 B
Python
def main(request, response):
|
|
policy = request.GET.first("policy");
|
|
return [("Content-Type", "text/html"), ("Content-Security-Policy", policy)], "<!DOCTYPE html><title>Echo.</title>"
|