mirror of
https://github.com/containers/podman.git
synced 2025-05-22 09:36:57 +08:00

Note: this makes info.go linux-only since it mixes linux-specific and generic code. This should be addressed in a separate refactoring PR. [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson <dfr@rabson.org>
18 lines
467 B
Go
18 lines
467 B
Go
//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")
|
|
}
|