pub fn milliseconds() -> i64Expand description
Returns the current time in milliseconds since the Unix epoch
This function is now a wrapper around TimestampUtils::now_ms() for consistency.
Consider using TimestampUtils::now_ms() directly for new code.
ยงExample
use ccxt_core::time::milliseconds;
let now = milliseconds();
assert!(now > 0);