use chrono::{DateTime, Utc}; #[derive(Debug, Clone)] pub struct RemoteActor { pub url: String, pub handle: String, pub display_name: Option, pub inbox_url: String, pub shared_inbox_url: Option, pub public_key: String, pub last_fetched_at: DateTime, }