mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
32 lines
448 B
Go
32 lines
448 B
Go
package imsg
|
|
|
|
import (
|
|
"mayfly-go/internal/pkg/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
|
|
|
|
LoginMsg
|
|
|
|
MachineFileUploadSuccessMsg
|
|
MachineFileUploadFailMsg
|
|
|
|
DbDumpFailMsg
|
|
SqlScriptRunFailMsg
|
|
SqlScriptRunSuccessMsg
|
|
|
|
FlowUserTaskTodoMsg
|
|
)
|