-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
31 lines (25 loc) · 716 Bytes
/
go.mod
File metadata and controls
31 lines (25 loc) · 716 Bytes
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
module github.com/nezuchan/scheduled-tasks
go 1.24.0
toolchain go1.26.3
require (
github.com/caarlos0/env/v11 v11.4.1
github.com/disgoorg/log v1.2.1
github.com/joho/godotenv v1.5.1
github.com/rabbitmq/amqp091-go v1.11.0
github.com/redis/go-redis/v9 v9.20.0
)
require (
github.com/caarlos0/env/v8 v8.0.0
github.com/go-co-op/gocron v1.37.0
github.com/go-co-op/gocron/v2 v2.21.2
)
require (
github.com/google/uuid v1.6.0 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
go.uber.org/atomic v1.11.0 // indirect
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/disgoorg/snowflake/v2 v2.0.3
)