2022-11-09 13:37:17 +01:00

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();
}