substreams_bitcoin_core/pb/mod.rs
1//! This module contains the protobuf generated code for the Substreams Bitcoin block
2//! model.
3//!
4//! This is the raw Protbuf code, types in here can be used without problem.
5
6mod generated;
7
8/// Re-export the protobuf generated code directly, at some point we might
9pub mod sf {
10 pub use crate::pb::generated::sf::*;
11}
12
13pub mod btc {
14 pub mod v1 {
15 pub use crate::pb::generated::sf::bitcoin::r#type::v1::*;
16 }
17}