chore: 添加任务队列管理系统

This commit is contained in:
2025-12-09 14:31:02 +08:00
commit c88bde7b11
12 changed files with 1452 additions and 0 deletions

20
go.mod Normal file
View File

@@ -0,0 +1,20 @@
module code.tczkiot.com/wlw/taskq
go 1.25.4
require (
github.com/hibiken/asynq v0.25.1
github.com/redis/go-redis/v9 v9.7.0
github.com/rs/xid v1.6.0
)
require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/spf13/cast v1.7.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/time v0.8.0 // indirect
google.golang.org/protobuf v1.35.2 // indirect
)