mirror of
				https://github.com/containers/podman.git
				synced 2025-11-01 02:42:11 +08:00 
			
		
		
		
	 24d9bda7ff
			
		
	
	24d9bda7ff
	
	
	
		
			
			prune a dependency that was only being used for a simple struct. Should correct checksum issue on tarballs [NO TESTS NEEDED] Fixes: #9355 Signed-off-by: baude <bbaude@redhat.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			524 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			524 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //+build !linux
 | |
| 
 | |
| package libpod
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| 
 | |
| 	"github.com/containers/podman/v3/libpod/define"
 | |
| )
 | |
| 
 | |
| func (c *Container) attach(streams *define.AttachStreams, keys string, resize <-chan define.TerminalSize, startContainer bool, started chan bool, attachRdy chan<- bool) error {
 | |
| 	return define.ErrNotImplemented
 | |
| }
 | |
| 
 | |
| func (c *Container) attachToExec(streams *define.AttachStreams, keys string, resize <-chan define.TerminalSize, sessionID string, startFd *os.File, attachFd *os.File) error {
 | |
| 	return define.ErrNotImplemented
 | |
| }
 |