mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
10 lines
228 B
Python
10 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
|