9 lines
		
	
	
		
			165 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			165 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package webhook
 | |
| 
 | |
| import "net/http"
 | |
| 
 | |
| // ListenHandler 是一个监听器, 用于监听设备上行事件
 | |
| type ListenHandler interface {
 | |
| 	Handler() http.HandlerFunc
 | |
| }
 |