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")
 | |
| }
 |