Skip to content

Commit e112715

Browse files
committed
chore: rename module to fork
⚠️ this is only to allow using the forked version while getsentry#679 is open
1 parent 8bb6f37 commit e112715

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+197
-165
lines changed

_examples/basic/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"os"
2020
"time"
2121

22-
"github.com/getsentry/sentry-go"
22+
"github.com/exaring/sentry-go"
2323
)
2424

2525
// release is the release of this program that will be reported to Sentry.

_examples/crons/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"time"
66

7-
"github.com/getsentry/sentry-go"
7+
"github.com/exaring/sentry-go"
88
)
99

1010
func runTask(monitorSlug string, duration time.Duration, shouldFail bool) {

_examples/echo/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"net/http"
66

7-
"github.com/getsentry/sentry-go"
8-
sentryecho "github.com/getsentry/sentry-go/echo"
7+
"github.com/exaring/sentry-go"
8+
sentryecho "github.com/exaring/sentry-go/echo"
99
"github.com/labstack/echo/v4"
1010
"github.com/labstack/echo/v4/middleware"
1111
)

_examples/fasthttp/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/getsentry/sentry-go"
7-
sentryfasthttp "github.com/getsentry/sentry-go/fasthttp"
6+
"github.com/exaring/sentry-go"
7+
sentryfasthttp "github.com/exaring/sentry-go/fasthttp"
88
"github.com/valyala/fasthttp"
99
)
1010

_examples/feature-showcase/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strconv"
88
"time"
99

10-
"github.com/getsentry/sentry-go"
10+
"github.com/exaring/sentry-go"
1111
)
1212

1313
func prettyPrint(v interface{}) string {

_examples/flush/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"time"
66

7-
"github.com/getsentry/sentry-go"
7+
"github.com/exaring/sentry-go"
88
)
99

1010
func main() {

_examples/gin/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"net/http"
66

7-
"github.com/getsentry/sentry-go"
8-
sentrygin "github.com/getsentry/sentry-go/gin"
7+
"github.com/exaring/sentry-go"
8+
sentrygin "github.com/exaring/sentry-go/gin"
99
"github.com/gin-gonic/gin"
1010
)
1111

_examples/http/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424
"sync"
2525
"time"
2626

27-
"github.com/getsentry/sentry-go"
28-
sentryhttp "github.com/getsentry/sentry-go/http"
27+
"github.com/exaring/sentry-go"
28+
sentryhttp "github.com/exaring/sentry-go/http"
2929
)
3030

3131
var addr = flag.String("addr", "127.0.0.1:3000", "bind address")

_examples/iris/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"fmt"
88
"net/http"
99

10-
"github.com/getsentry/sentry-go"
11-
sentryiris "github.com/getsentry/sentry-go/iris"
10+
"github.com/exaring/sentry-go"
11+
sentryiris "github.com/exaring/sentry-go/iris"
1212
"github.com/kataras/iris/v12"
1313
)
1414

_examples/logrus/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88

99
"github.com/sirupsen/logrus"
1010

11-
"github.com/getsentry/sentry-go"
12-
sentrylogrus "github.com/getsentry/sentry-go/logrus"
11+
"github.com/exaring/sentry-go"
12+
sentrylogrus "github.com/exaring/sentry-go/logrus"
1313
)
1414

1515
func main() {

0 commit comments

Comments
 (0)