kojin-postgres 0.4.0

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

mod result_backend;

pub use result_backend::PostgresResultBackend;