shad-go/distbuild/pkg/tarstream/stream.go

16 lines
198 B
Go
Raw Normal View History

2020-04-05 13:24:48 +00:00
// +build !solution
2020-03-27 22:52:54 +00:00
package tarstream
import (
"io"
)
func Send(dir string, w io.Writer) error {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-03-27 22:52:54 +00:00
}
func Receive(dir string, r io.Reader) error {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-03-27 22:52:54 +00:00
}