mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00
18 lines
488 B
Go
18 lines
488 B
Go
//go:build !linux && !freebsd
|
|
// +build !linux,!freebsd
|
|
|
|
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")
|
|
}
|