1 2 3 4 5 6 7 8 9
package iowrap import "io" // WriteFlusher writes bytes and flushes buffered output state. type WriteFlusher interface { io.Writer Flush() error }