mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	* Use vendored go-swagger * vendor go-swagger * revert un wanteed change * remove un-needed GO111MODULE * Update Makefile Co-Authored-By: techknowlogick <matti@mdranta.net>
		
			
				
	
	
		
			10 lines
		
	
	
		
			337 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			337 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
| 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 })
 |