1
2
3
4
5
6
7
8
9
pub mod client;
pub mod command;
// pub use command;
use serde::{Deserialize, Serialize};
#[derive(Debug)]
pub struct BlockhashHexEncoded(pub String);

#[derive(Serialize, Deserialize, Debug)]
pub struct Blockhash(pub String);