mentorenwahl/frontend/src/graphql/mutations/login.rs
Dominic Grimm ff2b884d42
All checks were successful
continuous-integration/drone/push Build is passing
Agent oriented logged in state
2022-11-05 21:27:49 +01:00

10 lines
240 B
Rust

use graphql_client::GraphQLQuery;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "graphql/schema.graphql",
query_path = "graphql/mutations/login.graphql",
response_derives = "Debug,Serialize,Deserialize"
)]
pub struct Login;