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: about 1 month 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 (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-05-29T04:50:45.000Z (about 10 years ago)
- Last Synced: 2026-01-14T18:28:28.085Z (5 months ago)
- Topics: broadcast-messages, flowdock, golang, golang-library, hipchat, robification-api, slack, sms
- Language: Go
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# robification-go [](https://travis-ci.org/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 main
import (
"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