summaryrefslogtreecommitdiffstats
path: root/src/local/history.rs
blob: e84d718c9663d6f2ca309e5d8646fad08f7b53be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use chrono;

#[derive(Debug)]
pub struct History {
    pub timestamp: i64,
    pub command: String,
    pub cwd: String,
}

impl History {
    pub fn new(command: String, cwd: String) -> History {
        History {
            timestamp: chrono::Utc::now().timestamp_millis(),
            command,
            cwd,
        }
    }
}