You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							9 lines
						
					
					
						
							337 B
						
					
					
				
			
		
		
	
	
							9 lines
						
					
					
						
							337 B
						
					
					
				| package runtime
 | |
| 
 | |
| import "io"
 | |
| 
 | |
| // DiscardConsumer does absolutely nothing, it's a black hole.
 | |
| var DiscardConsumer = ConsumerFunc(func(_ io.Reader, _ interface{}) error { return nil })
 | |
| 
 | |
| // DiscardProducer does absolutely nothing, it's a black hole.
 | |
| var DiscardProducer = ProducerFunc(func(_ io.Writer, _ interface{}) error { return nil })
 | |
| 
 |