Go library for StatusPage.io API
package main
import "github.com/yfronto/go-statuspage-api"
const (
apiKey = "....."
pageID = "....."
)
func main() {
c, err := statuspage.NewClient(apiKey, pageID)
if err != nil {
// ...
}
// Do stuff
}
Things are still in progress.