shithub: furgit

ref: 3ce59c3248dec0eb0f918c42f37f53bc2ac20425
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
}