/go-fleek

Tiny Go client library for the Fleek API

Primary LanguageGoGNU General Public License v3.0GPL-3.0

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,
    )
  }
}