Skip to main content

kojin_postgres/
lib.rs

1//! PostgreSQL result backend for the kojin task queue.
2//!
3//! Provides [`PostgresResultBackend`] — a durable result backend using
4//! PostgreSQL with `sqlx` for connection pooling and async queries.
5
6mod result_backend;
7
8pub use result_backend::PostgresResultBackend;