use std::fs; use crate::env::gcf; pub fn get_files() -> Vec { fs::read_to_string(gcf()) .expect("Error reading core file") .lines() .map(|x| x.to_string()) .collect() }