async-graphql/integrations/axum/src/lib.rs

10 lines
207 B
Rust
Raw Normal View History

2021-08-01 09:44:28 +00:00
//! Async-graphql integration with Axum
#![forbid(unsafe_code)]
#![warn(missing_docs)]
mod extract;
mod response;
pub use extract::{GraphQLBatchRequest, GraphQLRequest};
pub use response::GraphQLResponse;