Skip to content

Commit e0a77da

Browse files
committed
test: add email validtor test
1 parent c3f4cd3 commit e0a77da

File tree

3 files changed

+33
-515
lines changed

3 files changed

+33
-515
lines changed

server/go.mod

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ go 1.16
44

55
require (
66
github.com/99designs/gqlgen v0.13.0
7-
github.com/arangodb/go-driver v1.2.1 // indirect
8-
github.com/coreos/go-oidc/v3 v3.1.0 // indirect
9-
github.com/gin-contrib/location v0.0.2 // indirect
7+
github.com/arangodb/go-driver v1.2.1
8+
github.com/coreos/go-oidc/v3 v3.1.0
9+
github.com/gin-contrib/location v0.0.2
1010
github.com/gin-gonic/gin v1.7.2
11-
github.com/go-kit/kit v0.10.0 // indirect
1211
github.com/go-playground/validator/v10 v10.8.0 // indirect
1312
github.com/go-redis/redis/v8 v8.11.0
1413
github.com/golang-jwt/jwt v3.2.2+incompatible
@@ -17,7 +16,10 @@ require (
1716
github.com/joho/godotenv v1.3.0
1817
github.com/json-iterator/go v1.1.11 // indirect
1918
github.com/mattn/go-isatty v0.0.13 // indirect
20-
github.com/robertkrimen/otto v0.0.0-20211024170158-b87d35c0b86f // indirect
19+
github.com/mitchellh/mapstructure v1.1.2 // indirect
20+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
21+
github.com/modern-go/reflect2 v1.0.1 // indirect
22+
github.com/robertkrimen/otto v0.0.0-20211024170158-b87d35c0b86f
2123
github.com/ugorji/go v1.2.6 // indirect
2224
github.com/vektah/gqlparser/v2 v2.1.0
2325
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
@@ -29,6 +31,6 @@ require (
2931
gorm.io/driver/mysql v1.2.1
3032
gorm.io/driver/postgres v1.2.3
3133
gorm.io/driver/sqlite v1.2.6
32-
gorm.io/driver/sqlserver v1.2.1 // indirect
34+
gorm.io/driver/sqlserver v1.2.1
3335
gorm.io/gorm v1.22.4
3436
)

0 commit comments

Comments
 (0)