i6-timer 0.1.18

A cli timer tool
Documentation
pub fn print_history() {
  // Implement the history functionality here
  println!("Printing the history of all timers...");
}
#[test]
fn test_print_history() {
  print_history();
  // Add assertions here based on your implementation
}

pub fn print_history_json() {
  // Implement the history in JSON format functionality here
  println!("Printing the history of all timers in JSON format...");
}
#[test]
fn test_print_history_json() {
  print_history_json();
  // Add assertions here based on your implementation
}