Skip to content

Commit

Permalink
update deps and remove v2 module
Browse files Browse the repository at this point in the history
  • Loading branch information
Shareed2k committed Mar 15, 2021
1 parent 1349488 commit 96a7973
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 76 deletions.
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,7 @@ To run the example either clone the source from GitHub
$ git clone [email protected]/shareed2k/goth_fiber.git
```

or use for v2

```text
$ go get github.com/shareed2k/goth_fiber/v2
```

For v1

```
$ go get github.com/shareed2k/goth_fiber
```

Expand Down
3 changes: 2 additions & 1 deletion examples/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import (
"github.com/gofiber/fiber/v2"
"github.com/markbates/goth"
"github.com/markbates/goth/providers/google"
"github.com/shareed2k/goth_fiber/v2"

"github.com/shareed2k/goth_fiber"
)

func main() {
Expand Down
23 changes: 10 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
module github.com/shareed2k/goth_fiber/v2
module github.com/shareed2k/goth_fiber

go 1.15
go 1.16

require (
github.com/andybalholm/brotli v1.0.1 // indirect
github.com/gofiber/fiber/v2 v2.2.1
github.com/gofiber/fiber/v2 v2.6.0
github.com/golang/protobuf v1.4.3 // indirect
github.com/gorilla/mux v1.7.3 // indirect
github.com/klauspost/compress v1.11.3 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/markbates/goth v1.66.0
github.com/stretchr/testify v1.6.1 // indirect
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58 // indirect
golang.org/x/sys v0.0.0-20201126144705-a4b67b81d3d2 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/klauspost/compress v1.11.12 // indirect
github.com/markbates/goth v1.67.1
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/net v0.0.0-20210315170653-34ac3e1c2000 // indirect
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84 // indirect
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

0 comments on commit 96a7973

Please sign in to comment.