shad-go/distbuild/pkg/tarstream/stream.go
2022-03-15 23:49:56 +03:00

15 lines
199 B
Go

//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")
}