[][src]Function search_json::read_file_as_txt

pub fn read_file_as_txt(file: &str) -> String

flat deep nested json

Examples

   let path= "./test.json";
   let js = read_file_as_txt(&path);
   let res=flat_json(&js);
    dbg!(res);