11 lines
130 B
Rust
11 lines
130 B
Rust
|
enum Character {}
|
||
|
|
||
|
#[juniper::graphql_union]
|
||
|
impl Character {
|
||
|
fn resolve(&self) {
|
||
|
match self {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|