10 lines
No EOL
269 B
JavaScript
10 lines
No EOL
269 B
JavaScript
import wrapper from "./wrapper.js";
|
|
import stdlib from "./stdlib.js";
|
|
import metadata from "./metadata.js";
|
|
|
|
const initialize = async () => {
|
|
const zokrates = await import("./pkg/index.js");
|
|
return wrapper({ zokrates, stdlib });
|
|
};
|
|
|
|
export { initialize, metadata }; |