summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/import-scripts-echo.py
blob: d38d660e65935d49255a3879e38bbfb9be4cd5a2 (plain)
1
2
3
4
5
6
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";\n' % req.GET[b'msg'])