3 lines
194 B
Python
3 lines
194 B
Python
def main(request, response):
|
|
policy = request.GET.first(b"policy")
|
|
return [(b"Content-Type", b"text/html"), (b"Content-Security-Policy", policy)], b"<!DOCTYPE html><title>Echo.</title>"
|