Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 373 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 373 Bytes

rollrest-go

rollrest-go is a Go client library for accessing the Rollbar REST APIs.

Example

	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)