blob: b2bdd3e3dddf64edf2ffe2c80a6e6fcb8fe8d707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// +build !linux
package libpod
import (
"context"
"io"
)
func (c *Container) copyFromArchive(ctx context.Context, path string, reader io.Reader) (func() error, error) {
return nil, nil
}
func (c *Container) copyToArchive(ctx context.Context, path string, writer io.Writer) (func() error, error) {
return nil, nil
}
|