Skip to main content

Mountain/RPC/Types/
Response.rs

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