Golang client for the Line Notify API.
$ go get github.com/timwata/go-linenotify
package main
import (
    "fmt"
    "github.com/timwata/go-linenotify"  
)
func main() {
    cli := linenotify.New("YOUR_TOKEN")
    err := cli.Post("Hello, World!", nil)
    if err != nil {
        fmt.Println(err)
    }
}This project is released under the terms of the MIT license.