13 lines
203 B
Text
13 lines
203 B
Text
|
enum Character {}
|
||
|
|
||
|
juniper::graphql_interface!(Character: () where Scalar = <S> |&self| {
|
||
|
field id() -> &str {
|
||
|
match *self {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
instance_resolvers: |_| {}
|
||
|
});
|
||
|
|
||
|
fn main() {}
|