-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
53 lines (49 loc) · 1.86 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
47
48
49
50
51
52
53
module github.com/yash492/statusy
go 1.21.4
require (
github.com/atc0005/go-teams-notify/v2 v2.8.0
github.com/bwmarrin/discordgo v0.27.1
github.com/go-resty/resty/v2 v2.11.0
github.com/jackc/pgx/v5 v5.5.1
github.com/knadh/koanf/parsers/yaml v0.1.0
github.com/knadh/koanf/v2 v2.0.1
github.com/samber/lo v1.39.0
golang.org/x/text v0.14.0
)
require (
github.com/PuerkitoBio/goquery v1.8.1 // indirect
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/cockroachdb/apd v1.1.0 // indirect
github.com/gofrs/uuid v4.4.0+incompatible // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/time v0.5.0 // indirect
)
require (
github.com/PagerDuty/go-pagerduty v1.8.0
github.com/go-chi/chi/v5 v5.0.11
github.com/google/uuid v1.5.0
github.com/gosimple/slug v1.13.1
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/jackc/pgx v3.6.2+incompatible
github.com/knadh/koanf/maps v0.1.1 // indirect
github.com/knadh/koanf/providers/rawbytes v0.1.0
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/slack-go/slack v0.12.3
github.com/vgarvardt/pgx-google-uuid/v5 v5.0.0
gopkg.in/yaml.v3 v3.0.1
)