runledger-postgres 0.1.2

PostgreSQL persistence layer for the Runledger durable job and workflow system
Documentation
1
2
3
4
5
6
7
8
use super::QueryErrorSpec;

mod jobs;
mod workflows;

pub(super) fn classify_constraint(constraint: &str) -> Option<QueryErrorSpec> {
    jobs::classify_constraint(constraint).or_else(|| workflows::classify_constraint(constraint))
}