pub fn format(date: &DateTime<Local>) -> StringExpand description
Format a date from the iMessage table for reading
ยงExample:
use chrono::offset::Local;
use imessage_database::util::dates::format;
let date = format(&Local::now());
println!("{date}");