lnurl_pay/lib.rs
1// Copyright (c) 2024 Yuki Kishimoto
2// Distributed under the MIT software license
3
4#![cfg_attr(not(feature = "std"), no_std)]
5
6extern crate alloc;
7
8#[cfg(feature = "api")]
9pub mod api;
10pub mod error;
11pub mod lud06;
12pub mod lud16;
13
14pub use self::error::Error;
15pub use self::lud06::LnUrl;
16pub use self::lud16::LightningAddress;