flowfull 0.1.0

Async Rust client for Flowfull and Flowless-compatible backends
Documentation
1
2
3
4
5
6
7
8
9
10
//! Optional web-framework middleware.
//!
//! Enable `middleware-axum` or `middleware-actix` to use framework-specific
//! helpers. The core client has no required web framework dependency.

#[cfg(feature = "middleware-actix")]
pub mod actix;

#[cfg(feature = "middleware-axum")]
pub mod axum;