fiber_types/gen/mod.rs
1#[allow(clippy::all)]
2pub mod fiber;
3#[allow(clippy::all)]
4pub mod gossip;
5#[allow(clippy::all)]
6pub mod invoice;
7// fiber module requires types from blockchain.
8// We need to re-export these types.
9mod blockchain {
10 pub use ckb_gen_types::packed::{
11 Byte32, Byte32Reader, Bytes, BytesReader, BytesVec, BytesVecReader, OutPoint,
12 OutPointReader, Script, ScriptOpt, ScriptOptReader, ScriptReader, Transaction,
13 TransactionReader, Uint128, Uint128Reader, Uint32, Uint32Reader, Uint64, Uint64Reader,
14 };
15}