summaryrefslogtreecommitdiffstats
path: root/src/local/history.rs
blob: 001096217b2f9c310cd0f34f310b6bd5e354ed89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use chrono;
use uuid::Uuid;

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

impl History {
    pub fn new(timestamp: i64, command: String, cwd: String, exit: i64, duration: i64) -> History {
        History {
            id: Uuid::new_v4().to_simple().to_string(),
            timestamp,
            command,
            cwd,
            exit,
            duration,
        }
    }
}