thoughts 3.2.0

A simple cli for recording down any random thoughts you may have :D
Documentation
1
2
3
4
5
6
7
8
9
10
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

/// A single thought
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Thought {
    pub uid: i64,
    pub thought: String,
    pub utc: Option<DateTime<Utc>>,
}