rpc-api-server 0.1.0

A typed rpc library to be used by server targets (not wasm)
Documentation
1
2
3
4
5
use std::error::Error;
use serde::Serialize;

type GError = Box<dyn Error + Send + Sync>;
pub type GResult<T> = Result<T, GError>;