package zioutil type BlackholeWriter struct { } func (bhw BlackholeWriter) Write(b []byte) (n int, err error) { return len(b), nil }