mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 10:00:01 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			244 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			244 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !linux
 | |
| 
 | |
| package libpod
 | |
| 
 | |
| import (
 | |
| 	"github.com/containers/podman/v2/libpod/define"
 | |
| )
 | |
| 
 | |
| func (v *Volume) mount() error {
 | |
| 	return define.ErrNotImplemented
 | |
| }
 | |
| 
 | |
| func (v *Volume) unmount(force bool) error {
 | |
| 	return define.ErrNotImplemented
 | |
| }
 | 
