Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

godaddy/go-cuckoo

Repository files navigation

Cuckoo client library

Go Report Card Documentation

Original Author: Connor Lake

A simple go client library for the cuckoo api. See the godoc for more details and examples.

Example Usage

c := cuckoo.New(os.Getenv("API_KEY"), os.Getenv("BASEURL"))

status, _ := c.CuckooStatus(context.Background())

fmt.Println(status.Version)

Auth

Cuckoo uses an API key for auth, you can see more details in the cuckoo api documentation.