use crate::stream_engine::time::timestamp::SpringTimestamp;
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, new)]
pub struct SystemTimestamp;
impl SystemTimestamp {
pub fn now() -> SpringTimestamp {
let t = crate::time::NaiveDateTime::utc_now();
SpringTimestamp::new(t)
}
}