mirror of
https://github.com/Start9Labs/rpc-toolkit.git
synced 2026-03-31 04:33:41 +00:00
22 lines
525 B
Rust
22 lines
525 B
Rust
macro_rules! macro_try {
|
|
($x:expr) => {
|
|
match $x {
|
|
Ok(a) => a,
|
|
Err(e) => return e.to_compile_error(),
|
|
}
|
|
};
|
|
}
|
|
|
|
mod command;
|
|
mod rpc_handler;
|
|
mod rpc_server;
|
|
mod run_cli;
|
|
|
|
pub use command::build::build as build_command;
|
|
pub use rpc_handler::build::build as build_rpc_handler;
|
|
pub use rpc_handler::RpcHandlerArgs;
|
|
pub use rpc_server::build::build as build_rpc_server;
|
|
pub use rpc_server::RpcServerArgs;
|
|
pub use run_cli::build::build as build_run_cli;
|
|
pub use run_cli::RunCliArgs;
|