You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
214 B

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<String> {
return get_lines::get_lines(env::gcf());
}