misskey-api 0.2.0

API bindings of Misskey, including requests/responses of endpoints and messages on channels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! API bindings of [Misskey](https://github.com/syuilo/misskey), including requests/responses of [endpoints][`endpoint`] and messages on [channels][`streaming::channel`], for [misskey-rs](https://docs.rs/misskey).
#![cfg_attr(docsrs, feature(doc_cfg))]

pub mod endpoint;
pub mod model;
pub mod streaming;

pub(crate) mod serde;

mod entity;
mod pagination;

pub use entity::{Entity, EntityRef};
pub use pagination::{OffsetPaginationRequest, PaginationItem, PaginationRequest};

#[cfg(test)]
mod test;