term_keep 1.2.1

Terminal-based Google Keep clone. Can be used as a note taking / To-Do list app on a server.
Documentation
1
2
3
4
5
6
7
use chrono::{DateTime, Utc};

const DATE_FORMAT: &str = "%Y-%m-%d %H:%M:%S";

pub fn format_date(date: DateTime<Utc>) -> String {
  date.format(DATE_FORMAT).to_string()
}