a3s-flow 0.10.3

Durable workflow engine and Rust SDK for A3S
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "postgres")]
mod postgres;
#[cfg(feature = "sqlite")]
mod sqlite;

#[cfg(feature = "postgres")]
pub(super) const POSTGRES_SCHEDULED_WAKEUPS_SQL: &str = postgres::POSTGRES_SCHEDULED_WAKEUPS_SQL;
#[cfg(feature = "sqlite")]
pub(super) const SQLITE_SCHEDULED_WAKEUPS_SQL: &str = sqlite::SQLITE_SCHEDULED_WAKEUPS_SQL;