Skip to main content

runifold_store_postgres/
lib.rs

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