streamweave 0.10.1

Composable, async, stream-first computation in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! HTTP Server Integration for StreamWeave Graphs
//!
//! This module provides HTTP server integration for StreamWeave graphs, enabling
//! building HTTP APIs using StreamWeave pipelines and graphs.

pub mod error;
pub mod middleware;
pub mod nodes;
pub mod server;
pub mod types;

pub use crate::error::{ErrorAction, ErrorContext, ErrorStrategy, StreamError};
pub use error::*;
pub use middleware::*;
pub use nodes::*;
pub use server::*;
pub use types::*;