2022-11-24 23:37:34 +08:00
|
|
|
// Package cmd
|
|
|
|
// @Link https://github.com/bufanyun/hotgo
|
2023-02-23 17:53:04 +08:00
|
|
|
// @Copyright Copyright (c) 2023 HotGo CLI
|
2022-11-24 23:37:34 +08:00
|
|
|
// @Author Ms <133814250@qq.com>
|
|
|
|
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
|
|
|
//
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
"github.com/gogf/gf/v2/os/gcmd"
|
|
|
|
"hotgo/internal/queues"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
Queue = &gcmd.Command{
|
|
|
|
Name: "queue",
|
|
|
|
Brief: "消息队列",
|
|
|
|
Description: ``,
|
|
|
|
Func: func(ctx context.Context, parser *gcmd.Parser) (err error) {
|
2023-01-18 16:23:39 +08:00
|
|
|
g.Log().Debug(ctx, "start queue consumer..")
|
2022-11-24 23:37:34 +08:00
|
|
|
queues.Run(ctx)
|
|
|
|
return
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|