1pub mod responses; 2pub use bitcoin::PublicKey; 3pub use responses::*; 4#[derive(Debug, serde::Serialize)] 5pub enum HashOrHeight { 6 Hash(bitcoin::BlockHash), 7 Height(u32), 8} 9pub type ShortChannelId = String;