ckb_types/
global.rs

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