1 2 3 4 5 6 7 8
use async_graphql::Schema; use schema::{Mutation, Query, Subscription}; pub mod macros; pub mod schema; pub mod simple_broker; pub type SuperviseurSchema = Schema<Query, Mutation, Subscription>;