1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! A prelude of the `adventure` for the crate which want to try with it.
//!
//! This module is intended to be included by `use adventure::prelude::*;`,
//! to access the various traits and methods mostly will be used.

pub use crate::oneshot::OneshotRequest;
pub use crate::paginator::PagedRequest;
pub use crate::request::{BaseRequest, Request};
pub use crate::response::Response;
pub use crate::retry::RetriableRequest;