woodpecker/vendor/github.com/getsentry/raven-go/docs/index.rst
2015-09-29 18:21:17 -07:00

678 B

Raven-Go provides a Sentry client implementation for the Go programming language.

Installation

Raven-Go can be installed like any other Go library through go get:

$ go get github.com/getsentry/raven-go

Minimal Example

package main

import (
    "github.com/getsentry/raven-go"
)

func main() {
    raven.SetDSN("___DSN___")

    _, err := DoSomethingThatFails()
    if err != nil {
        raven.CaptureErrorAndWait(err, nil);
    }
}