mob_push 0.2.1

notify pusher using Mob Push
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod config;
mod error;
pub mod http_client;
mod push_forward;
pub mod push_notify;
mod pusher;

mod pushing_data;
mod user_subscribe;

pub use pushing_data::PushEntity;
pub use user_subscribe::{SubscribeFilter, UserMobId, UserSubscribeManage};

pub use config::{load_config_from_default, set_config, MobPushConfig};

pub use error::MobPushError;
pub use push_forward::{PushForward, Scheme};
pub use pusher::MobPusher;