fuel_streams_core/blocks/mod.rs
pub mod subjects;
pub mod types;
pub use subjects::*;
use types::*;
use crate::{StreamEncoder, Streamable};
impl StreamEncoder for Block {}
impl Streamable for Block {
const NAME: &'static str = "blocks";
const WILDCARD_LIST: &'static [&'static str] = &[BlocksSubject::WILDCARD];
}