use crate::error::BlossomError; use mastodon_async::entities::status::Status; use mastodon_async::prelude::*; pub async fn get_recents(client: &Mastodon) -> Result, BlossomError> { Ok(client .statuses("cel", Default::default()) .await? .initial_items) }