apollo-router 1.61.13

A configurable, high-performance routing runtime for Apollo Federation 🚀
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(deprecated)]
#![allow(missing_docs)]

use tower::BoxError;

#[deprecated = "use `apollo_router::services::router::Request` instead"]
pub type Request = http::Request<hyper::Body>;
#[deprecated = "use `apollo_router::services::router::Response` instead"]
pub type Response = http::Response<hyper::Body>;
#[deprecated = "use `apollo_router::services::router::BoxService` instead"]
pub type BoxService = tower::util::BoxService<Request, Response, BoxError>;
#[deprecated = "use `apollo_router::services::router::BoxCloneService` instead"]
pub type BoxCloneService = tower::util::BoxCloneService<Request, Response, BoxError>;
#[deprecated = "use `apollo_router::services::router::ServiceResult` instead"]
pub type ServiceResult = Result<Response, BoxError>;