blob: 0a253896d11a48c6daa5c2cd4822b37be374ee77 (
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!()
}
}
|