aboutsummaryrefslogtreecommitdiffstats
path: root/common/buffer/option.go
blob: 2e802e6102a59fd640edd89756cf3a62c53d53b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
package buffer

type Option func(*Buffer)

func WithData(data []byte) Option {
	return func(b *Buffer) {
		b.buf = data
	}
}