36 lines
805 B
Go
36 lines
805 B
Go
package constants
|
|
|
|
type BotTools string
|
|
|
|
const (
|
|
BotToolsBugOptimizationSubmit BotTools = "bug_optimization_submit" // 系统的bug/优化建议
|
|
)
|
|
|
|
type ChatStyle int
|
|
|
|
const (
|
|
ChatStyleNormal ChatStyle = 1 //正常
|
|
ChatStyleSerious ChatStyle = 2 //严肃
|
|
ChatStyleGentle ChatStyle = 3 //温柔
|
|
ChatStyleArrogance ChatStyle = 4 //傲慢
|
|
ChatStyleCute ChatStyle = 5 //可爱
|
|
ChatStyleAngry ChatStyle = 6 //愤怒
|
|
)
|
|
|
|
var ChatStyleMap = map[ChatStyle]string{
|
|
ChatStyleNormal: "正常",
|
|
ChatStyleSerious: "严肃",
|
|
ChatStyleGentle: "温柔",
|
|
ChatStyleArrogance: "傲慢",
|
|
ChatStyleCute: "可爱",
|
|
ChatStyleAngry: "愤怒",
|
|
}
|
|
|
|
type BotType int
|
|
|
|
const (
|
|
BotTypeDingTalk BotType = 1 // 系统的bug/优化建议
|
|
)
|
|
|
|
const DingTalkAuthBaseKeyPrefix = "dingTalk_auth"
|