fav_utils 0.0.15

Fav's utils crate; A collection of utilities and data structures for the fav project
Documentation
1
2
3
4
5
6
pub fn timestamp_sc() -> u64 {
    std::time::SystemTime::now()
        .duration_since(std::time::UNIX_EPOCH)
        .unwrap()
        .as_secs()
}