use std::sync::LazyLock;
use anyhow::Result;
use crate::cnf::PKG_VERSION;
pub static RELEASE: LazyLock<String> = LazyLock::new(|| {
format!("{} for {} on {}", *PKG_VERSION, std::env::consts::OS, std::env::consts::ARCH)
});
pub fn init() -> Result<()> {
info!("Running {}", *RELEASE);
Ok(())
}