mentorenwahl/frontend/src/graphql/queries.rs
Dominic Grimm 860ae7ed5e
All checks were successful
continuous-integration/drone/push Build is passing
Rewrite frontend in rust with yew
2022-11-04 21:23:36 +01:00

10 lines
210 B
Rust

use graphql_client::GraphQLQuery;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "graphql/schema.graphql",
query_path = "graphql/queries/ok.graphql",
response_derives = "Debug"
)]
pub struct Ok;