Section I - library
#[macro_use] extern crate serde_derive;
#[macro_use] extern crate serde_json;use std::str;
use std::time::{SystemTime};fn get_unix_now() -> u64 {
match SystemTime::now().duration_since(SystemTime::UNIX_EPOCH) {
Ok(n) =>n.as_secs(),
Err(_) => panic!("SystemTime before UNIX EPOCH!"),
}
}pub mod daas;Last updated