├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── buffer.go ├── buffer_test.go ├── go.mod └── go.sum /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailgun/multibuf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailgun/multibuf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailgun/multibuf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailgun/multibuf/HEAD/README.md -------------------------------------------------------------------------------- /buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailgun/multibuf/HEAD/buffer.go -------------------------------------------------------------------------------- /buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailgun/multibuf/HEAD/buffer_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailgun/multibuf/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailgun/multibuf/HEAD/go.sum --------------------------------------------------------------------------------