mentorenwahl/frontend/src/graphql/queries/tokens.rs
Dominic Grimm 8055a5e4db
Some checks failed
continuous-integration/drone/push Build is failing
Update
2023-01-17 06:56:19 +01:00

15 lines
296 B
Rust

use graphql_client::GraphQLQuery;
use crate::graphql::scalars;
type UUID = scalars::UUID;
type Time = String;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "graphql/schema.graphql",
query_path = "graphql/queries/tokens.graphql",
response_derives = "Debug"
)]
pub struct Tokens;