rustybook-messenger 0.2.1

Messenger client for Rustybook
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

pub mod client;
pub mod error;
pub mod model;

mod auth;
#[cfg(feature = "cache")]
mod cache;
mod gateway;
mod http;
mod parser;
mod state;