mirror of https://github.com/usual2970/certimate
				
				
				
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			301 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			301 B
		
	
	
	
		
			Go
		
	
	
package domain
 | 
						|
 | 
						|
const (
 | 
						|
	NotifyChannelDingtalk = "dingtalk"
 | 
						|
	NotifyChannelWebhook  = "webhook"
 | 
						|
	NotifyChannelTelegram = "telegram"
 | 
						|
	NotifyChannelLark     = "lark"
 | 
						|
	NotifyChannelServerChan = "serverchan"
 | 
						|
	NotifyChannelMail = "mail"
 | 
						|
)
 | 
						|
 | 
						|
type NotifyTestPushReq struct {
 | 
						|
	Channel string `json:"channel"`
 | 
						|
}
 |