11 lines
139 B
Rust
11 lines
139 B
Rust
|
use juniper::graphql_interface;
|
||
|
|
||
|
#[graphql_interface]
|
||
|
trait Character {
|
||
|
fn id(&self) -> &str {
|
||
|
"default"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|