package sample

import "io"

func StreamInto(dst io.Writer, src io.Reader) (int64, error) {
	return io.Copy(dst, src)
}