usehttp::header::{self, HeaderMap};/// Creates the default headers used in Perseus. This is the default value for
/// `set_headers` on every `Template<G>`
pub(crate)fndefault_headers()-> HeaderMap{letmut map =HeaderMap::new();
map.insert(header::CACHE_CONTROL,"max-age=300".parse().unwrap());
map
}