Skip to main content

Module postgres_store

Module postgres_store 

Source
Expand description

PostgreSQL-backed TaskStore implementation.

Requires the postgres feature flag. Uses sqlx for async PostgreSQL access.

§Example

use a2a_protocol_server::store::PostgresTaskStore;

let store = PostgresTaskStore::new("postgres://user:pass@localhost/a2a").await?;

Structs§

PostgresTaskStore
PostgreSQL-backed TaskStore.