modulink-rs 1.0.0

A modular, composable, and observable async function orchestration library for Rust, following the ModuLink universal template.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod context;
pub mod chains;
pub mod middleware;
pub mod links;
pub mod listeners;

/// Re-export macros for use throughout the crate
#[macro_use]
pub mod macros;


// Ergonomic re-exports
pub use chains::Chain;
pub use links::Link;