pub fn print_history() {
println!("Printing the history of all timers...");
}
#[test]
fn test_print_history() {
print_history();
}
pub fn print_history_json() {
println!("Printing the history of all timers in JSON format...");
}
#[test]
fn test_print_history_json() {
print_history_json();
}