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