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.