use time::{
macros::{format_description, offset},
OffsetDateTime,
};
pub fn get_now_date() -> String {
let date_format = format_description!("[year][month][day]");
let now = OffsetDateTime::now_utc().to_offset(offset!(+8)).date();
now.format(&date_format).unwrap()
}