mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 17:39:39 +02:00
9 lines
255 B
JavaScript
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);
|
|
});
|