import-scripts-get.py (246B)
1 def main(req, res): 2 return ([ 3 (b'Cache-Control', b'no-cache, must-revalidate'), 4 (b'Pragma', b'no-cache'), 5 (b'Content-Type', b'application/javascript')], 6 b'%s = "%s";\n' % (req.GET[b'output'], req.GET[b'msg']))