4N2L5KK57LJSVM5KDIGT3XAY4JZH6XX6UF5ZKSEIP7Y7Z6EVSBVAC pub fn show_notes(config: &Config) -> Result<(), Box<dyn Error>> {Err(Box::from("show not implemented"))}pub fn edit_notes(config: &Config) -> Result<(), Box<dyn Error>> {Err(Box::from("edit not implemented"))}pub fn run(config: Config) -> Result<(), Box<dyn Error>> {// get content that is re-usable by multiple functionsmatch config.action {Action::List => list_notes(&config),Action::Edit => edit_notes(&config),Action::Show => show_notes(&config),}}