7 lines
97 B
Rust
7 lines
97 B
Rust
|
use juniper::GraphQLInterface;
|
||
|
|
||
|
#[derive(GraphQLInterface)]
|
||
|
struct Character(i32);
|
||
|
|
||
|
fn main() {}
|