mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 09:29:38 +02:00
10 lines
308 B
JavaScript
10 lines
308 B
JavaScript
// Will work once the agent service is merged.
|
|
import("@effect/platform-bun/BunRuntime")
|
|
.then(async (BunRuntime) => {
|
|
const m = await import("../packages/flow/dist/agent/react/service.js");
|
|
BunRuntime.runMain(m.program);
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|