blob: 0d2e68647ad1a47c9921ee048e147d1e1232ca6e [file] [log] [blame]
export function new_response() {
return new Response(null, {status: 501});
}
export function get_wasm_imports() {
return {
imports: {
imported_func: function () {
return 1;
}
}
};
}