robot.go 197 Bytes
Newer Older
chenweijian's avatar
chenweijian committed
1 2 3 4 5 6 7 8 9 10 11 12
package robot_k

import "fmt"

const (
	RobotGroupCd = "robot:group:cd:%s"
)

// 机器人上群cd
func GetRobotGroupCdKey(txGroupId string) string {
	return fmt.Sprintf(RobotGroupCd, txGroupId)
}