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

  1. package runtime
  2. import "io"
  3. // DiscardConsumer does absolutely nothing, it's a black hole.
  4. var DiscardConsumer = ConsumerFunc(func(_ io.Reader, _ interface{}) error { return nil })
  5. // DiscardProducer does absolutely nothing, it's a black hole.
  6. var DiscardProducer = ProducerFunc(func(_ io.Writer, _ interface{}) error { return nil })