Skip to main content

runifold_store_postgres/
lib.rs

1//! Durable `PostgreSQL` storage adapters for Runifold.
2
3mod conversation;
4mod workflow;
5
6pub use conversation::{PostgresConversationStore, PostgresConversationStoreError};
7pub use workflow::{PostgresWorkflowStore, PostgresWorkflowStoreError};