mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-06 07:00:27 -05:00
Logentries client (golang)
Provides the capability to perform CRUD operations on log sets, logs, and log types.
Example
package main
import (
"fmt"
logentries "github.com/logentries/le_goclient"
)
func main() {
client := logentries.NewClient("<account_key>")
res, err := client.User.Read(logentries.UserReadRequest{})
fmt.Printf("err: %s\n", err)
fmt.Println(res)
}
License
See LICENSE.md