Sign in
cobalt
/
cobalt
/
527110903c994f57b3fc64852b74e941d515b683
/
.
/
third_party
/
web_platform_tests
/
service-workers
/
service-worker
/
resources
/
import-scripts-get.py
blob: ab7b84e3e34e3f6ccff48a497d10f9bdc356fda3 [
file
] [
log
] [
blame
]
def
main
(
req
,
res
):
return
([
(
b
'Cache-Control'
,
b
'no-cache, must-revalidate'
),
(
b
'Pragma'
,
b
'no-cache'
),
(
b
'Content-Type'
,
b
'application/javascript'
)],
b
'%s = "%s";\n'
%
(
req
.
GET
[
b
'output'
],
req
.
GET
[
b
'msg'
]))