periplon 0.2.0

Rust SDK for building multi-agent AI workflows and automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Queue system module

#[cfg(feature = "server")]
pub mod traits;

#[cfg(feature = "server")]
pub mod filesystem;

#[cfg(feature = "server")]
pub mod postgres;

#[cfg(feature = "server")]
pub mod redis;

#[cfg(feature = "server")]
pub use traits::{Job, QueueError, QueueStats, Result, WorkQueue};