mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
11 lines
228 B
Python
11 lines
228 B
Python
import json
|
|
|
|
def main(request, response):
|
|
|
|
content = ""
|
|
if "my-custom-header" in request.GET:
|
|
val = request.GET.first("my-custom-header")
|
|
response.headers.set("My-Custom-Header", val)
|
|
|
|
return content
|