-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
executable file
·46 lines (42 loc) · 1.65 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
module github.com/kervinch
go 1.18
require (
github.com/allegro/bigcache/v3 v3.0.2
github.com/aws/aws-sdk-go v1.43.24
github.com/felixge/httpsnoop v1.0.2
github.com/go-mail/mail/v2 v2.3.0
github.com/gosimple/slug v1.12.0
github.com/julienschmidt/httprouter v1.3.0
github.com/lib/pq v1.10.4
github.com/xendit/xendit-go v1.0.8
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
golang.org/x/exp v0.0.0-20220428152302-39d4317da171
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11
gorm.io/driver/postgres v1.3.1
gorm.io/gorm v1.23.2
)
require (
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.2.0 // indirect
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.11.0 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.2.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.10.0 // indirect
github.com/jackc/pgx/v4 v4.15.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/text v0.3.7 // indirect
)
require (
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/mail.v2 v2.3.1 // indirect
)