Files
rpc-toolkit/rpc-toolkit-macro-internals/src/rpc_server/mod.rs
2021-04-12 16:14:21 -06:00

11 lines
132 B
Rust

use syn::*;
pub struct RpcServerArgs {
command: Path,
ctx: Expr,
status_fn: Option<Expr>,
}
pub mod build;
mod parse;