create rpc toolkit

This commit is contained in:
Aiden McClelland
2021-04-01 18:00:16 -06:00
commit dd22dfacc2
26 changed files with 3524 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
use syn::*;
pub struct RpcServerArgs {
command: Path,
seed: Expr,
status_fn: Option<Expr>,
}
pub mod build;
mod parse;