mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-23 21:13:25 +00:00
14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
export function new_response() {
|
|
return new Response(null, {status: 501});
|
|
}
|
|
|
|
export function get_wasm_imports() {
|
|
return {
|
|
imports: {
|
|
imported_func: function () {
|
|
return 1;
|
|
}
|
|
}
|
|
};
|
|
}
|