mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-02 16:44:15 -05:00
9bf0f7da1a
* feat: extract utils as the library * refactor: thaw_utils directory * style: fmt
5 lines
98 B
Rust
5 lines
98 B
Rust
use chrono::{Local, NaiveDate};
|
|
|
|
pub fn now_date() -> NaiveDate {
|
|
Local::now().date_naive()
|
|
}
|