mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 16:30:25 +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
							 | 
						||
| 
								 | 
							
								)
							 |