blob: d2e1be92fbd0b0ab87aff46d609143a4c627b30d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#[derive(Debug)]
pub struct Timestamps {
file: String,
}
impl Timestamps {
pub fn new(file: &str) -> Self {
todo!()
}
pub fn update_timestamps(&mut self, date: &str) -> anyhow::Result<()> {
todo!()
}
pub fn save(&self, file: &str, format: i64) -> anyhow::Result<()> {
todo!()
}
}
|