grpctestify 1.4.8

gRPC testing utility written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::polyfill::runtime;

pub fn now_timestamp() -> i64 {
    runtime::now_timestamp()
}

pub fn now_rfc3339() -> String {
    runtime::now_rfc3339()
}

pub fn now_unix_millis() -> u128 {
    runtime::now_unix_millis()
}