1//! Async-graphql integration with Axum 2#![forbid(unsafe_code)] 3#![allow(clippy::uninlined_format_args)] 4#![warn(missing_docs)] 5 6mod extract; 7mod response; 8 9pub use extract::{GraphQLBatchRequest, GraphQLRequest}; 10pub use response::GraphQLResponse;