1
2
3
4
5
6
7
8
9
10
11
12
use syn::*;

pub struct RpcServerArgs {
    command: Path,
    ctx: Expr,
    parent_data: Option<Expr>,
    status_fn: Option<Expr>,
    middleware: punctuated::Punctuated<Expr, token::Comma>,
}

pub mod build;
mod parse;