mastodon API rust lib elefren, fixed and updated. and also all ASYNC! NB. most examples are now wrong.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
930 B

pub mod account;
pub mod attachment;
pub mod card;
pub mod context;
pub mod instance;
pub(crate) mod itemsiter;
pub mod list;
pub mod mention;
pub mod notification;
pub mod relationship;
pub mod report;
pub mod search_result;
pub mod status;
/// An empty JSON object.
#[derive(Deserialize)]
pub struct Empty {}
pub mod prelude {
//! The purpose of this module is to alleviate imports of many common
//! structs by adding a glob import to the top of mastodon heavy
//! modules:
pub use super::{
account::{Account, CredientialsBuilder, Source},
attachment::{Attachment, MediaType},
card::Card,
context::Context,
instance::*,
list::List,
mention::Mention,
notification::Notification,
relationship::Relationship,
report::Report,
search_result::SearchResult,
status::{Application, Emoji, Status},
Empty,
};
}