mob_push 0.2.1

notify pusher using Mob Push
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, serde::Deserialize)]
pub struct MobPushConfig {
    pub key: String,
    pub secret: String,
}

pub trait MobPushConfigTrait {
    fn get_key(&self) -> &str;
    fn get_secret(&self) -> &str;
}