9 lines
99 B
Rust
9 lines
99 B
Rust
|
use juniper::graphql_subscription;
|
||
|
|
||
|
struct Obj;
|
||
|
|
||
|
#[graphql_subscription]
|
||
|
impl Obj {}
|
||
|
|
||
|
fn main() {}
|