mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-04 17:31:42 +00:00
* refactor(sqlite): centralize database opens * test(sqlite): mock connection owner boundary
9 lines
351 B
TypeScript
9 lines
351 B
TypeScript
// Narrow SQLite schema, path, and transaction helpers for first-party runtime.
|
|
|
|
export {
|
|
ensureOpenClawAgentDatabaseSchema,
|
|
resolveOpenClawAgentSqlitePath,
|
|
} from "../state/openclaw-agent-db.js";
|
|
export { openNodeSqliteDatabase } from "../infra/node-sqlite.js";
|
|
export { runSqliteImmediateTransactionSync } from "../infra/sqlite-transaction.js";
|