ucan 0.4.0

Implement UCAN-based authorization with conciseness and ease!
Documentation
1
2
3
4
5
6
7
8
use instant::SystemTime;

pub fn now() -> u64 {
    SystemTime::now()
        .duration_since(SystemTime::UNIX_EPOCH)
        .unwrap()
        .as_secs()
}