SimplePush: A Rust client for simplepush.io
A Rust client for the SimplePush API
Adding the client to your project
Sending a simple notification
let result = send;
Sending a simple notification with encryption
let result = send;
A Rust client for the SimplePush API
cargo add simplepush-rs
let result = SimplePush::send(Message::new(
"SIMPLE_PUSH_KEY",
Some("title"),
"test message",
None,
None,
));
let result = SimplePush::send(Message::new(
"SIMPLE_PUSH_KEY",
Some("title"),
"test message",
None,
None,
"ENCRYPTION_KEY",
Some("SALT"),
));