This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 195
/
go.mod
42 lines (40 loc) · 2.03 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
module github.com/go-chat-bot/bot
require (
cloud.google.com/go v0.100.2
cloud.google.com/go/compute v1.1.0 // indirect
cloud.google.com/go/iam v0.1.1 // indirect
cloud.google.com/go/pubsub v1.17.1
github.com/Jeffail/gabs v1.4.0 // indirect
github.com/andygrunwald/go-jira v1.14.1-0.20220125145100-3555edb9bbda // indirect
github.com/beevik/guid v0.0.0-20170504223318-d0ea8faecee0 // indirect
github.com/cloudfoundry/gosigar v1.3.3 // indirect
github.com/detached/gorocket v0.0.0-20170629192631-d44bbd3f26d2 // indirect
github.com/go-chat-bot/plugins v0.0.0-20210423135617-90af38949890
github.com/go-chat-bot/plugins-br v0.0.0-20200917130500-b69d8e0f9584
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/gopackage/ddp v0.0.0-20170117053602-652027933df4 // indirect
github.com/martinusso/go-docs v1.0.0 // indirect
github.com/mattn/go-shellwords v1.0.12
github.com/mozillazg/go-unidecode v0.1.1
github.com/onsi/ginkgo v1.10.1 // indirect
github.com/onsi/gomega v1.7.0 // indirect
github.com/pyinx/gorocket v0.0.0-20170810024322-78ae1353729f
github.com/robfig/cron/v3 v3.0.1
github.com/slack-go/slack v0.10.1
github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
github.com/thoj/go-ircevent v0.0.0-20210723090443-73e444401d64
golang.org/x/net v0.0.0-20220127074510-2fabfed7e28f // indirect
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350 // indirect
google.golang.org/grpc v1.44.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/telegram-bot-api.v3 v3.0.0
)
go 1.13