You've already forked watchtower
							
							
				mirror of
				https://github.com/containrrr/watchtower.git
				synced 2025-10-31 00:17:44 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			168 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			168 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package types
 | |
| 
 | |
| // Notifier is the interface that all notification services have in common
 | |
| type Notifier interface {
 | |
| 	StartNotification()
 | |
| 	SendNotification()
 | |
| 	Close()
 | |
| }
 |