vls_util/
lib.rs

1//! Utility functions for the Validating Lightning Signer
2
3pub mod config;
4pub mod env_var;
5pub mod observability;
6#[cfg(feature = "otlp")]
7mod otlp;
8pub mod persist;
9pub mod util;
10
11pub use env_var::*;
12
13// Defines GIT_DESC
14include!(concat!(env!("OUT_DIR"), "/version.rs"));