File tree 6 files changed +31
-326
lines changed
6 files changed +31
-326
lines changed Original file line number Diff line number Diff line change @@ -44,13 +44,13 @@ make docker.run
44
44
| [ auth0/go-jwt-middleware] ( https://github.com/auth0/go-jwt-middleware ) | ` v1.0.1 ` | middleware |
45
45
| [ swaggo/http-swagger] ( https://github.com/swaggo/http-swagger ) | ` v1.0.0 ` | middleware |
46
46
| [ stretchr/testify] ( https://github.com/stretchr/testify ) | ` v1.7.0 ` | tests |
47
- | [ dgrijalva /jwt-go ] ( https://github.com/dgrijalva /jwt-go ) | ` v3.2.0 ` | auth |
47
+ | [ golang-jwt /jwt] ( https://github.com/golang-jwt /jwt ) | ` v3.2.1 ` | auth |
48
48
| [ joho/godotenv] ( https://github.com/joho/godotenv ) | ` v1.3.0 ` | config |
49
49
| [ jmoiron/sqlx] ( https://github.com/jmoiron/sqlx ) | ` v1.3.4 ` | database |
50
- | [ jackc/pgx] ( https://github.com/jackc/pgx ) | ` v4.11 .0 ` | database |
50
+ | [ jackc/pgx] ( https://github.com/jackc/pgx ) | ` v4.13 .0 ` | database |
51
51
| [ swaggo/swag] ( https://github.com/swaggo/swag ) | ` v1.7.0 ` | utils |
52
52
| [ google/uuid] ( https://github.com/google/uuid ) | ` v1.3.0 ` | utils |
53
- | [ go-playground/validator] ( https://github.com/go-playground/validator ) | ` v10.7 .0 ` | utils |
53
+ | [ go-playground/validator] ( https://github.com/go-playground/validator ) | ` v10.8 .0 ` | utils |
54
54
55
55
## 🗄 Template structure
56
56
Original file line number Diff line number Diff line change 9
9
"github.com/create-go-app/net_http-go-template/app/validators"
10
10
"github.com/create-go-app/net_http-go-template/pkg/utils"
11
11
"github.com/create-go-app/net_http-go-template/platform/database"
12
- "github.com/dgrijalva /jwt-go "
12
+ "github.com/golang-jwt /jwt"
13
13
"github.com/google/uuid"
14
14
)
15
15
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ go 1.16
5
5
require (
6
6
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
7
7
github.com/auth0/go-jwt-middleware v1.0.1
8
- github.com/dgrijalva/jwt-go v3.2.0+incompatible
9
- github.com/go-playground/validator/v10 v10.7.0
8
+ github.com/go-playground/validator/v10 v10.8.0
9
+ github.com/golang-jwt/jwt v3.2.1+incompatible
10
10
github.com/google/uuid v1.3.0
11
11
github.com/gorilla/mux v1.8.0
12
- github.com/jackc/pgx/v4 v4.12 .0
12
+ github.com/jackc/pgx/v4 v4.13 .0
13
13
github.com/jmoiron/sqlx v1.3.4
14
14
github.com/joho/godotenv v1.3.0
15
15
github.com/swaggo/http-swagger v1.0.0
You can’t perform that action at this time.
0 commit comments