Skip to main content

Mountain/RPC/Types/
Request.rs

1#![allow(non_snake_case)]
2
3//! Generic request envelope for shared RPC types.
4
5pub struct Struct<T> {
6	pub data:T,
7}