2021-09-20 03:45:13 +02:00
|
|
|
module github.com/lyx0/nourybot
|
|
|
|
|
2023-03-03 22:16:11 +01:00
|
|
|
go 1.20
|
2021-10-13 21:30:31 +02:00
|
|
|
|
|
|
|
require (
|
2023-08-05 20:41:55 +02:00
|
|
|
github.com/gempir/go-twitch-irc/v4 v4.0.0
|
2023-10-10 19:46:56 +02:00
|
|
|
github.com/google/uuid v1.3.1
|
2022-08-25 04:47:27 +02:00
|
|
|
github.com/jakecoffman/cron v0.0.0-20190106200828-7e2009c226a5
|
2023-10-10 19:46:56 +02:00
|
|
|
github.com/lib/pq v1.10.9
|
2023-10-11 18:52:46 +02:00
|
|
|
github.com/nicklaw5/helix/v2 v2.25.1
|
2023-08-05 20:12:07 +02:00
|
|
|
github.com/shkh/lastfm-go v0.0.0-20191215035245-89a801c244e0
|
2023-10-10 19:46:56 +02:00
|
|
|
github.com/wader/goutubedl v0.0.0-20230924165737-427b7fa536e6
|
|
|
|
go.uber.org/zap v1.24.0
|
|
|
|
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
|
2021-10-25 23:33:00 +02:00
|
|
|
)
|
2022-06-04 03:03:51 +02:00
|
|
|
|
2022-08-07 03:09:09 +02:00
|
|
|
require (
|
2023-10-10 19:46:56 +02:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.0.0 // indirect
|
2023-12-13 22:40:48 +01:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2023-10-10 19:46:56 +02:00
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
|
|
go.uber.org/multierr v1.6.0 // indirect
|
|
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/briandowns/openweathermap v0.19.0
|
|
|
|
github.com/dustin/go-humanize v1.0.1
|
|
|
|
github.com/joho/godotenv v1.5.1
|
2023-12-17 19:07:05 +01:00
|
|
|
github.com/julienschmidt/httprouter v1.3.0
|
2022-08-07 03:09:09 +02:00
|
|
|
)
|