Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 803 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 803 Bytes

robification-go Build Status Go Report Card

A golang library which uses the RobiFication API to broadcast messages to Flowdock, Slack, HipChat, SMS.

Usage:

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