aboutsummaryrefslogtreecommitdiff
path: root/libpod/container_copy_unsupported.go
blob: 62937279a2389a193647dfd9ba75b6920f7da2f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//go:build !linux
// +build !linux

package libpod

import (
	"errors"
	"io"
)

func (c *Container) copyFromArchive(path string, chown, noOverwriteDirNonDir bool, rename map[string]string, reader io.Reader) (func() error, error) {
	return nil, errors.New("not implemented (*Container) copyFromArchive")
}

func (c *Container) copyToArchive(path string, writer io.Writer) (func() error, error) {
	return nil, errors.New("not implemented (*Container) copyToArchive")
}