Skip to main content

agent_sdk_toolkit/agent_pool/
mod.rs

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.
5
6mod sqlite_store;
7
8pub use sqlite_store::SqliteAgentPoolStore;