mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
9 lines
185 B
Rust
9 lines
185 B
Rust
use graphql_client::GraphQLQuery;
|
|
|
|
#[derive(GraphQLQuery)]
|
|
#[graphql(
|
|
schema_path = "../schema.graphql",
|
|
query_path = "queries/list_users.graphql"
|
|
)]
|
|
pub struct ListUsersQuery;
|