16 lines
		
	
	
		
			295 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			295 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package containerd
 | 
						|
 | 
						|
import "github.com/pkg/errors"
 | 
						|
 | 
						|
var (
 | 
						|
	ErrNotImplementOnWindows = errors.New("not implemented under windows")
 | 
						|
)
 | 
						|
 | 
						|
func (m *Mount) Mount(target string) error {
 | 
						|
	return ErrNotImplementOnWindows
 | 
						|
}
 | 
						|
 | 
						|
func Unmount(mount string, flags int) error {
 | 
						|
	return ErrNotImplementOnWindows
 | 
						|
}
 |