#![allow(unused_imports)]
use serde::{Deserialize, Serialize};
pub use body::*;
pub use header::*;
mod body;
mod header;
#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
pub struct Block {
pub head: BlockHeader,
pub body: Option<BlockBody>,
}