1 2 3 4 5 6 7 8 9 10 11
use serde::Serialize; pub mod account; pub mod error; pub mod problem; pub mod response; #[derive(Serialize)] pub struct UpdateAt { pub updated_at: chrono::NaiveDateTime, }