megalodon 1.0.1

Mastodon and Pleroma API client library for Rust.
Documentation
pub mod account;
pub mod announcement;
pub mod app;
pub mod blocking;
pub mod created_note;
pub mod emoji;
pub mod favorite;
pub mod field;
pub mod file;
pub mod follow;
pub mod follow_request;
pub mod hashtag;
pub mod instance;
pub mod list;
pub mod meta;
pub mod mute;
pub mod note;
pub mod notification;
pub mod poll;
pub mod preferences;
pub mod reaction;
pub mod relation;
pub mod session;
pub mod stats;
pub mod user;
pub mod user_detail;

pub use account::Account;
pub use announcement::Announcement;
#[allow(unused_imports)]
pub use app::App;
pub use blocking::Blocking;
pub use created_note::CreatedNote;
pub use emoji::Emoji;
pub use favorite::Favorite;
pub use field::Field;
pub use file::File;
pub use follow::Follow;
pub use follow_request::FollowRequest;
pub use hashtag::Hashtag;
pub use instance::Instance;
pub use list::List;
pub use meta::Meta;
pub use mute::Mute;
pub use note::Note;
pub use notification::Notification;
#[allow(unused_imports)]
pub use poll::Poll;
#[allow(unused_imports)]
pub use reaction::Reaction;
pub use relation::Relation;
pub use session::Session;
#[allow(unused_imports)]
pub use stats::Stats;
pub use user::User;
pub use user_detail::UserDetail;