fedimovies/src/mastodon_api/search/types.rs
2021-09-14 12:24:05 +00:00

10 lines
207 B
Rust

use serde::Serialize;
use crate::mastodon_api::accounts::types::Account;
/// https://docs.joinmastodon.org/methods/search/
#[derive(Serialize)]
pub struct SearchResults {
pub accounts: Vec<Account>,
}