Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jrobles/robification-go
A golang library which uses the RobiFication API to broadcast messages to Flowdock, Slack, HipChat, SMS.
https://github.com/jrobles/robification-go
broadcast-messages flowdock golang golang-library hipchat robification-api slack sms
Last synced: 6 days ago
JSON representation
A golang library which uses the RobiFication API to broadcast messages to Flowdock, Slack, HipChat, SMS.
- Host: GitHub
- URL: https://github.com/jrobles/robification-go
- Owner: jrobles
- License: apache-2.0
- Created: 2015-08-27T19:36:04.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-29T04:50:45.000Z (over 8 years ago)
- Last Synced: 2024-11-20T04:36:55.255Z (2 months ago)
- Topics: broadcast-messages, flowdock, golang, golang-library, hipchat, robification-api, slack, sms
- Language: Go
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# robification-go [![Build Status](https://travis-ci.org/josemrobles/robification-go.svg?branch=master)](https://travis-ci.org/josemrobles/robification-go) [![Go Report Card](https://goreportcard.com/badge/github.com/josemrobles/robification-go)](https://goreportcard.com/report/github.com/josemrobles/robification-go)
A golang library which uses the RobiFication API to broadcast messages to Flowdock, Slack, HipChat, SMS.Usage:
```go
package mainimport (
"fmt"
"github.com/josemrobles/robification-go"
)func main() {
yourMessage := robification.NewFdChat("YOUR_CHAT_API_TOKEN", "YOUR_MESSAGE")
err := robification.Send(yourMessage)
if err != nil {
fmt.Println(err)
}
}
```Todo:
- Concurrent messages and message types to multiple providers.
- Better error handling
- Tests