use std::collections::HashMap;
use once_cell::sync::Lazy;
pub mod docs_map;
const ALL_DOCS: &[(&str, &str)] = &include!(concat!(env!("OUT_DIR"), "/all_the_docs.rs"));
pub static DOCS_CONTENTS: Lazy<HashMap<&str, &str>> =
Lazy::new(|| HashMap::from_iter(ALL_DOCS.iter().map(|&(a, b)| (a, b))));