shithub: furgit

ref: ab174c473618dd3743881cf44e02c2db4d1ecd5f
dir: /common/iowrap/write_flusher.go/

View raw version
package iowrap

import "io"

// WriteFlusher writes bytes and flushes buffered output state.
type WriteFlusher interface {
	io.Writer
	Flush() error
}