d0b56f9222
- support `#[graphql_interface]` on structs
6 lines
87 B
Rust
6 lines
87 B
Rust
use juniper::graphql_interface;
|
|
|
|
#[graphql_interface]
|
|
trait Character {}
|
|
|
|
fn main() {}
|