trustgraph/ts/entrypoints/cores.mjs
elpresidank ffd97375a8 saving
2026-05-12 08:06:58 -05:00

9 lines
255 B
JavaScript

import("@effect/platform-bun/BunRuntime")
.then(async (BunRuntime) => {
const m = await import("../packages/flow/dist/cores/service.js");
BunRuntime.runMain(m.program);
})
.catch((err) => {
console.error(err);
process.exit(1);
});