go-fleek

go-fleek is an open source Go library for accessing the Fleek API.

go-fleek

godoc license

Tiny Go library for the Fleek API.

Installation

go get -u github.com/mrusme/go-fleek

Getting Started

Querying Sites by Team ID

package main

import (
  "log"
  "github.com/mrusme/go-fleek"
)

func main() {
  f := fleek.New("apiKeyHere")

  sites, err := f.GetSitesByTeamId("my-team")
  if err != nil {
    log.Panic(err)
  }

  for _, site := range sites {
    log.Printf(
      "Site ID: %v\nName: %s\nPlatform: %s\n\n",
      site.Id,
      site.Name,
      site.Platform,
    )
  }
}

Updates GitHub


Enjoyed this? Support me via Monero, Bitcoin, Lightning, or Ethereum!  More info.