Skip to content

Commit

Permalink
Fix: JWT example
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-sumi-k committed Aug 3, 2023
1 parent e27d88d commit ecd2e0d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
11 changes: 10 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,13 @@ module github.com/canopas/go-reusables

go 1.20

require github.com/canopas/go-reusables/file v0.0.0-20230803063902-1173d2208c12
require (
github.com/canopas/go-reusables/file v0.0.0-20230803063902-1173d2208c12
github.com/canopas/go-reusables/jwtAuth v0.0.0-20230803064502-14a68a353aff
)

require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
)
15 changes: 15 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
github.com/canopas/go-reusables/file v0.0.0-20230803063902-1173d2208c12 h1:UBTOPeJ1aj37Zd3it8uoXFbLwXIiLlkLYmfNsnpyAO0=
github.com/canopas/go-reusables/file v0.0.0-20230803063902-1173d2208c12/go.mod h1:G5vEb56L0IbDQdCMictssue3OZ1mPvPe9dJ8nq+ugs8=
github.com/canopas/go-reusables/jwtAuth v0.0.0-20230803064502-14a68a353aff h1:I9quWrfM7x6uQGf1YtOKPX5/6XRV4IoxV/CFqR4hrQo=
github.com/canopas/go-reusables/jwtAuth v0.0.0-20230803064502-14a68a353aff/go.mod h1:WwQFy6Vijwocesx9YB37ZCyX4COD2E3zQd3YJw3lDOg=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=
github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 h1:0A+M6Uqn+Eje4kHMK80dtF3JCXC4ykBgQG4Fe06QRhQ=
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 comments on commit ecd2e0d

Please sign in to comment.