Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2024 Yuki Kishimoto
// Distributed under the MIT software license

#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

#[cfg(feature = "api")]
pub mod api;
pub mod error;
pub mod lud06;
pub mod lud16;

pub use self::error::Error;
pub use self::lud06::LnUrl;
pub use self::lud16::LightningAddress;