mentorenwahl/frontend/src/graphql/mutations/login.rs

10 lines
218 B
Rust
Raw Normal View History

2022-11-05 20:27:49 +00:00
use graphql_client::GraphQLQuery;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "graphql/schema.graphql",
query_path = "graphql/mutations/login.graphql",
2022-11-12 21:50:06 +00:00
response_derives = "Debug"
2022-11-05 20:27:49 +00:00
)]
pub struct Login;