mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
15 lines
283 B
Go
15 lines
283 B
Go
![]() |
// +build !linux,!windows
|
||
|
|
||
|
package fsutil
|
||
|
|
||
|
import (
|
||
|
"runtime"
|
||
|
|
||
|
"github.com/pkg/errors"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
func Receive(ctx context.Context, conn Stream, dest string, notifyHashed ChangeFunc) error {
|
||
|
return errors.Errorf("receive is unsupported in %s", runtime.GOOS)
|
||
|
}
|