blob: 0d2e68647ad1a47c9921ee048e147d1e1232ca6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export function new_response() {
return new Response(null, {status: 501});
}
export function get_wasm_imports() {
return {
imports: {
imported_func: function () {
return 1;
}
}
};
}
|