Sign in
cobalt
/
cobalt
/
527110903c994f57b3fc64852b74e941d515b683
/
.
/
third_party
/
web_platform_tests
/
service-workers
/
service-worker
/
resources
/
scope2
/
import-scripts-echo.py
blob: 5f785b5cc27c064e83eba8260ca3920849d943d0 [
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
'echo_output = "%s (scope2/)";\n'
%
req
.
GET
[
b
'msg'
])