use chrono::{DateTime, Utc}; #[derive(Debug)] pub struct Entry { pub id: u64, pub note: String, pub start: DateTime, pub end: DateTime, pub sheet: String, } #[derive(Debug)] pub struct Meta { pub id: u64, pub key: String, pub value: String, }