2022-11-24 23:37:34 +08:00
|
|
|
// Package consts
|
2022-02-25 17:11:17 +08:00
|
|
|
// @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>
|
2022-02-25 17:11:17 +08:00
|
|
|
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
|
|
|
//
|
|
|
|
package consts
|
|
|
|
|
|
|
|
// 消息队列
|
|
|
|
const (
|
2023-01-25 11:49:21 +08:00
|
|
|
QueueLogTopic = `request_log` // 访问日志
|
|
|
|
QueueLoginLogTopic = `login_log` // 登录日志
|
|
|
|
QueueServeLogTopic = `serve_log` // 服务日志
|
2022-02-25 17:11:17 +08:00
|
|
|
)
|