mirror of
https://github.com/chronotope/chrono.git
synced 2025-09-27 04:50:52 +00:00
8 lines
131 B
Rust
8 lines
131 B
Rust
#![no_std]
|
|
|
|
use chrono::{TimeZone, Utc};
|
|
|
|
pub fn create_time() {
|
|
let _ = Utc.with_ymd_and_hms(2019, 1, 1, 0, 0, 0).unwrap();
|
|
}
|