Skip to content

Commit 2a50e53

Browse files
committed
chore: fork
This is a fork based on this branch: getsentry#679
1 parent 92bb309 commit 2a50e53

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

+175
-174
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
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"net/http"
77

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

_examples/fasthttp/main.go

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

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

_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/fiber/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-
sentryfiber "github.com/getsentry/sentry-go/fiber"
6+
"github.com/exaring/sentry-go"
7+
sentryfiber "github.com/exaring/sentry-go/fiber"
88
"github.com/gofiber/fiber/v2"
99
"github.com/gofiber/fiber/v2/utils"
1010
)

_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
@@ -8,8 +8,8 @@ import (
88
"fmt"
99
"net/http"
1010

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

0 commit comments

Comments
 (0)