pub trait DenoJsonCache {
    // Required methods
    fn get(&self, path: &Path) -> Option<ConfigFileRc>;
    fn set(&self, path: PathBuf, deno_json: ConfigFileRc);
}pub trait DenoJsonCache {
    // Required methods
    fn get(&self, path: &Path) -> Option<ConfigFileRc>;
    fn set(&self, path: PathBuf, deno_json: ConfigFileRc);
}