mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-04 10:21:38 +00:00
* 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
8 lines
330 B
TypeScript
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";
|