Skip to content

Commit

Permalink
fix stripe
Browse files Browse the repository at this point in the history
  • Loading branch information
radiantspace committed May 24, 2024
1 parent 7843182 commit 779d0cb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions backend/app/payments/stripe.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import (
tu "github.com/mymmrac/telego/telegoutil"
log "github.com/sirupsen/logrus"

"github.com/stripe/stripe-go/v74"
"github.com/stripe/stripe-go/v74/checkout/session"
"github.com/stripe/stripe-go/v74/customer"
"github.com/stripe/stripe-go/v74/subscription"
"github.com/stripe/stripe-go/v74/webhook"
"github.com/stripe/stripe-go/v78"
"github.com/stripe/stripe-go/v78/checkout/session"
"github.com/stripe/stripe-go/v78/customer"
"github.com/stripe/stripe-go/v78/subscription"
"github.com/stripe/stripe-go/v78/webhook"
"github.com/valyala/fasthttp"
)

Expand Down
2 changes: 1 addition & 1 deletion backend/app/telegram/telegram_system.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
th "github.com/mymmrac/telego/telegohandler"
tu "github.com/mymmrac/telego/telegoutil"
log "github.com/sirupsen/logrus"
"github.com/stripe/stripe-go/v74/customer"
"github.com/stripe/stripe-go/v78/customer"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion backend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require (
github.com/sirupsen/logrus v1.9.0
github.com/slack-go/slack v0.12.3
github.com/stretchr/testify v1.9.0
github.com/stripe/stripe-go/v74 v74.18.0
github.com/stripe/stripe-go/v78 v78.8.0
github.com/undefinedlabs/go-mpatch v1.0.7
github.com/valyala/fasthttp v1.52.0
go.mongodb.org/mongo-driver v1.11.2
Expand Down
4 changes: 2 additions & 2 deletions backend/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/stripe/stripe-go/v74 v74.18.0 h1:ImSIoaVkTUozHxa21AhwHYBjwc8fVSJJJB1Q7oaXzIw=
github.com/stripe/stripe-go/v74 v74.18.0/go.mod h1:f9L6LvaXa35ja7eyvP6GQswoaIPaBRvGAimAO+udbBw=
github.com/stripe/stripe-go/v78 v78.8.0 h1:2/bLAbJyrH9dE4OsL1uCFhVEW8jS1dTV3fEkK3G0vvs=
github.com/stripe/stripe-go/v78 v78.8.0/go.mod h1:GjncxVLUc1xoIOidFqVwq+y3pYiG7JLVWiVQxTsLrvQ=
github.com/tidwall/pretty v1.0.0 h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4=
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI=
Expand Down
2 changes: 1 addition & 1 deletion backend/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"github.com/fasthttp/router"
tu "github.com/mymmrac/telego/telegoutil"
log "github.com/sirupsen/logrus"
"github.com/stripe/stripe-go/v74"
"github.com/stripe/stripe-go/v78"
"github.com/valyala/fasthttp"
)

Expand Down

0 comments on commit 779d0cb

Please sign in to comment.