mirror of
https://github.com/Start9Labs/rpc-toolkit.git
synced 2026-03-26 10:21:55 +00:00
13 lines
223 B
Rust
13 lines
223 B
Rust
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;
|