use crate::env; use crate::get_lines; /// Gets the list of all files to load sayings from. /// Panics on any kind of possible error pub fn get_files() -> Vec { return get_lines::get_lines(env::gcf()); }