Documentation
1
2
3
4
5
6
fn main() -> Result<(), Box<dyn std::error::Error>> {
    let path = "./src/lib.rs";
    let timestamp = wei_file::get_timestamp(path)?;
    println!("Timestamp: {}", timestamp);
    Ok(())
}