1use std::path::PathBuf; 2 3pub trait DataDirProvider: Send + Sync + 'static { 4 fn get_data_dir() -> PathBuf; 5}