atuin/src/local/history.rs

19 lines
367 B
Rust
Raw Normal View History

use chrono;
#[derive(Debug)]
pub struct History {
pub timestamp: i64,
pub command: String,
pub cwd: String,
}
impl History {
pub fn new(command: &str, cwd: &str) -> History {
History {
timestamp: chrono::Utc::now().timestamp_millis(),
command: command.to_string(),
cwd: cwd.to_string(),
}
}
}