Files
Moltbot/src/plugins/runtime/runtime-events.ts
2026-03-03 02:06:58 +00:00

11 lines
323 B
TypeScript

import { onAgentEvent } from "../../infra/agent-events.js";
import { onSessionTranscriptUpdate } from "../../sessions/transcript-events.js";
import type { PluginRuntime } from "./types.js";
export function createRuntimeEvents(): PluginRuntime["events"] {
return {
onAgentEvent,
onSessionTranscriptUpdate,
};
}