15 lines
194 B
Rust
15 lines
194 B
Rust
|
struct Object {}
|
||
|
|
||
|
#[juniper::graphql_object]
|
||
|
impl Object {
|
||
|
fn test(&self) -> String {
|
||
|
String::new()
|
||
|
}
|
||
|
|
||
|
fn test(&self) -> String {
|
||
|
String::new()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|