# README
go-fleek
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,
)
}
}
# Functions
Initializes new FleekClient.
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author