Skip to main content

bowline_client/
lib.rs

1pub mod codec;
2mod error;
3pub mod rules;
4pub mod sse;
5mod transport;
6
7pub use error::{Code, Error, Issue, RemoteError};
8pub use futures_core::Stream;
9pub use reqwest::Body;
10pub use transport::{
11    encode_segment, Base64Bytes, CallOptions, DurationNs, Empty, Method, StringInt, StringUint,
12    Transport, Validate,
13};