mirror of
https://github.com/servo/servo.git
synced 2025-07-04 05:53:39 +01:00
4 lines
165 B
Python
4 lines
165 B
Python
def main(request, response):
|
|
status = int(request.GET["status"])
|
|
module = b"\0asm\1\0\0\0"
|
|
return status, [("Content-Type", "application/wasm")], module
|