thaw/thaw_utils/src/time.rs
luoxiaozero 9bf0f7da1a
Feat/thaw utils (#145)
* feat: extract utils as the library

* refactor: thaw_utils directory

* style: fmt
2024-03-19 22:02:43 +08:00

5 lines
98 B
Rust

use chrono::{Local, NaiveDate};
pub fn now_date() -> NaiveDate {
Local::now().date_naive()
}