1//! SQLite-backed agent-pool coordination store.
2//!
3//! This module provides an optional concrete `AgentPoolStore` adapter. Core owns
4//! the portable pool records and semantics; this toolkit module owns SQLite I/O.
56mod sqlite_store;
78pub use sqlite_store::SqliteAgentPoolStore;