Add `TestStore` implementation of `KVStore`
[rust-lightning] / lightning / src / offers / mod.rs
index d97632a78cc57dede82c7eacd8d14fa7f465b72f..c6883abca34d827093a7e55de1d87a950ae4d28c 100644 (file)
 //!
 //! Offers are a flexible protocol for Lightning payments.
 
+#[macro_use]
+pub mod offer;
+
 pub mod invoice;
 pub mod invoice_error;
 pub mod invoice_request;
 pub mod merkle;
-pub mod offer;
 pub mod parse;
 mod payer;
 pub mod refund;
-#[allow(unused)]
 pub(crate) mod signer;
 #[cfg(test)]
 mod test_utils;