alexcurtin / go-statuspage-api

Go library for StatusPage.io API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-statuspage-api

Go library for StatusPage.io API

Usage

Base

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.

About

Go library for StatusPage.io API

License:MIT License


Languages

Language:Go 98.2%Language:Makefile 1.8%