1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-11-24 08:22:18 +02:00
notify/go.mod

80 lines
3.7 KiB
Modula-2
Raw Normal View History

2021-01-25 01:14:21 +02:00
module github.com/nikoksr/notify
go 1.17
2021-01-25 01:14:21 +02:00
require (
2021-02-13 23:24:06 +02:00
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f
github.com/Rhymen/go-whatsapp v0.1.1
2021-05-26 12:58:39 +02:00
github.com/RocketChat/Rocket.Chat.Go.SDK v0.0.0-20210506200512-3b3352a919f0
github.com/antihax/optional v1.0.0 // indirect
github.com/atc0005/go-teams-notify/v2 v2.6.1
github.com/aws/aws-sdk-go-v2 v1.16.2
github.com/aws/aws-sdk-go-v2/config v1.15.3
github.com/aws/aws-sdk-go-v2/credentials v1.11.2
github.com/aws/aws-sdk-go-v2/service/ses v1.14.3
github.com/aws/aws-sdk-go-v2/service/sns v1.17.4
github.com/blinkbean/dingtalk v0.0.0-20210905093040-7d935c0f7e19
github.com/bwmarrin/discordgo v0.25.0
2021-02-05 10:24:19 +02:00
github.com/cschomburg/go-pushbullet v0.0.0-20171206132031-67759df45fbb
github.com/dghubble/go-twitter v0.0.0-20220413154426-14d8abde2e80
github.com/dghubble/oauth1 v0.7.1
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
2021-01-25 06:05:00 +02:00
github.com/jordan-wright/email v4.0.1-0.20210109023952-943e75fe5223+incompatible
github.com/line/line-bot-sdk-go v7.8.0+incompatible
github.com/mailgun/mailgun-go/v4 v4.6.1
github.com/pkg/errors v0.9.1
github.com/plivo/plivo-go/v7 v7.8.0
github.com/sendgrid/sendgrid-go v3.10.5+incompatible
github.com/silenceper/wechat/v2 v2.1.2
github.com/slack-go/slack v0.10.2
github.com/stretchr/testify v1.7.1
github.com/textmagic/textmagic-rest-go-v2/v2 v2.0.2457
2022-01-23 13:25:35 +02:00
github.com/utahta/go-linenotify v0.5.0
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
)
require github.com/google/go-cmp v0.5.7
require (
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.3 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.9 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.3 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.10 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.3 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.11.3 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.16.3 // indirect
github.com/aws/smithy-go v1.11.2 // indirect
github.com/bradfitz/gomemcache v0.0.0-20220106215444-fb4bf637b56d // indirect
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dghubble/sling v1.4.0 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/gomodule/redigo v1.8.8 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
2021-02-12 20:21:01 +02:00
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sendgrid/rest v2.6.7+incompatible // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
2021-02-17 02:16:33 +02:00
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e // indirect
github.com/spf13/cast v1.4.1 // indirect
2021-02-12 20:21:01 +02:00
github.com/stretchr/objx v0.3.0 // indirect
2021-01-25 01:14:21 +02:00
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
golang.org/x/sys v0.0.0-20220204135822-1c1b9b1eba6a // indirect
2021-08-13 02:01:39 +02:00
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.27.1 // indirect
2021-02-23 12:18:27 +02:00
gopkg.in/yaml.v2 v2.4.0 // indirect
2021-02-12 20:21:01 +02:00
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
2021-01-25 01:14:21 +02:00
)