mirror of
https://github.com/Start9Labs/rpc-toolkit.git
synced 2026-03-26 02:11:56 +00:00
11 lines
132 B
Rust
11 lines
132 B
Rust
use syn::*;
|
|
|
|
pub struct RpcServerArgs {
|
|
command: Path,
|
|
ctx: Expr,
|
|
status_fn: Option<Expr>,
|
|
}
|
|
|
|
pub mod build;
|
|
mod parse;
|