Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 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