An open API service indexing awesome lists of open source software.

https://github.com/davidji99/rollrest-go

Go library for accessing the Rollbar Rest API
https://github.com/davidji99/rollrest-go

api rollbar rollbar-api rollrest-go

Last synced: 8 months ago
JSON representation

Go library for accessing the Rollbar Rest API

Awesome Lists containing this project

README

          

# rollrest-go
rollrest-go is a Go client library for accessing the [Rollbar REST APIs](https://explorer.docs.rollbar.com/).

# Example
```go
client, newClientErr := rollrest.New(rollbar.AuthAAT("some_account_access_token"),
rollbar.UserAgent("rollbar-go-custom"))

if newClientErr != nil {
fmt.Printf("Error: %v\n", newClientErr)
return
}

fmt.Println(client)
```