mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-09 02:40:26 +08:00
21 lines
301 B
Go
21 lines
301 B
Go
|
|
package imsg
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/internal/common/consts"
|
||
|
|
"mayfly-go/pkg/i18n"
|
||
|
|
)
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
i18n.AppendLangMsg(i18n.Zh_CN, Zh_CN)
|
||
|
|
i18n.AppendLangMsg(i18n.En, En)
|
||
|
|
}
|
||
|
|
|
||
|
|
const (
|
||
|
|
LogMsgChannelSave = iota + consts.ImsgNumMsg
|
||
|
|
LogMsgChannelDelete
|
||
|
|
|
||
|
|
LogMsgTmplSave
|
||
|
|
LogMsgTmplDelete
|
||
|
|
LogMsgTmplSend
|
||
|
|
)
|