seconds

Function seconds 

Source
pub fn seconds() -> i64
Expand description

Returns the current time in seconds since the Unix epoch

ยงExample

use ccxt_core::time::seconds;

let now = seconds();
assert!(now > 0);