1//! Global data, initialized in the launch phase.
23use std::path::PathBuf;
4use std::sync::OnceLock;
56/// ckb data directory path, located under root/data, initialized during the launch phase
7pub static DATA_DIR: OnceLock<PathBuf> = OnceLock::new();