perf: narrow Matrix handler session store import

This commit is contained in:
Peter Steinberger
2026-04-17 16:09:10 +01:00
parent 40c9da1d57
commit 3b81bf4c7c
2 changed files with 2 additions and 1 deletions

View File

@@ -1,11 +1,11 @@
import fs from "node:fs";
import os from "node:os";
import path from "node:path";
import { recordSessionMetaFromInbound } from "openclaw/plugin-sdk/config-runtime";
import {
__testing as sessionBindingTesting,
registerSessionBindingAdapter,
} from "openclaw/plugin-sdk/conversation-runtime";
import { recordSessionMetaFromInbound } from "openclaw/plugin-sdk/session-store-runtime";
import { beforeEach, describe, expect, it, vi } from "vitest";
import { installMatrixMonitorTestRuntime } from "../../test-runtime.js";
import { MATRIX_OPENCLAW_FINALIZED_PREVIEW_KEY } from "../send/types.js";

View File

@@ -2,3 +2,4 @@
export { loadSessionStore } from "../config/sessions/store-load.js";
export { resolveSessionStoreEntry } from "../config/sessions/store-entry.js";
export { recordSessionMetaFromInbound } from "../config/sessions/store.js";