Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit a45fb10

Browse files
committed
Remove Sentry integration and update dependencies in go.mod and go.sum
- Removed the Sentry initialization code from main.go. - Deleted badge.go and shopware.go handler files. - Updated go.mod to replace `github.com/getsentry/sentry-go` with `github.com/google/go-cmp` and `golang.org/x/crypto`. - Updated go.sum to reflect the changes in dependencies. This cleanup improves the codebase by removing unused dependencies and handlers.
1 parent 31b0537 commit a45fb10

5 files changed

Lines changed: 2 additions & 542 deletions

File tree

go.mod

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@ module frosh-api
33
go 1.15
44

55
require (
6-
github.com/getsentry/sentry-go v0.29.1
7-
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
6+
github.com/google/go-cmp v0.6.0 // indirect
87
github.com/google/go-github/v53 v53.2.0
98
github.com/julienschmidt/httprouter v1.3.0
10-
github.com/narqo/go-badge v0.0.0-20190124110329-d9415e4e1e9f
11-
github.com/rogpeppe/go-internal v1.9.0 // indirect
129
github.com/rs/cors v1.11.1
13-
golang.org/x/image v0.18.0 // indirect
10+
golang.org/x/crypto v0.23.0 // indirect
1411
golang.org/x/oauth2 v0.24.0
1512
)

0 commit comments

Comments
 (0)