1use crate::utils::date_time::current_timestamp_millis; 2 3pub fn gen_with_ts() -> String { 4 format!("{}", current_timestamp_millis()) 5}