Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lpil/wimp-pushover
https://github.com/lpil/wimp-pushover
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lpil/wimp-pushover
- Owner: lpil
- Created: 2023-10-22T15:26:36.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-06T13:27:20.000Z (about 1 year ago)
- Last Synced: 2024-05-01T23:06:06.452Z (7 months ago)
- Language: Gleam
- Size: 8.79 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- awesome-gleam - wimp - [📚](https://hexdocs.pm/wimp/) - A Gleam client for the Pushover push notification API (Packages / Push Notifications)
README
# wimp
[![Package Version](https://img.shields.io/hexpm/v/wimp)](https://hex.pm/packages/wimp)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/wimp/)A Gleam client for the Pushover push notification API.
```sh
gleam add wimp
```
```gleam
import wimp
import gleam/httpcpub fn send_notification() {
let assert Ok(response) =
wimp.new(token: token, user: user, message: "Hello, Joe!")
|> wimp.message_request
|> httpc.sendresponse
|> wimp.decode_message_response
}
```Code documentation can be found at .
More information about the Pushover API can be found at .