shad-go/distbuild/pkg/tarstream/stream.go
2020-04-05 16:24:48 +03:00

15 lines
198 B
Go

// +build !solution
package tarstream
import (
"io"
)
func Send(dir string, w io.Writer) error {
panic("implement me")
}
func Receive(dir string, r io.Reader) error {
panic("implement me")
}