Files
openclaw/src/agents/command/session-store.runtime.ts
Peter Steinberger 6f29fc88e9 refactor(sessions): migrate pure readers to read-only session accessors (#112568)
* refactor(sessions): migrate pure readers to read-only session accessors

* test(sessions): teach mocks and declarations the read-only accessors

* test(sessions): align remaining harnesses with read-only accessors
2026-07-22 01:16:35 -07:00

8 lines
330 B
TypeScript

// Runtime barrel for session-store writes; keeps command modules from importing
// config/session persistence until an agent run needs to save state.
export { updateSessionStoreAfterAgentRun } from "./session-store.js";
export {
loadSessionEntry,
loadSessionEntryReadOnly,
} from "../../config/sessions/session-accessor.js";