mirror of https://github.com/containers/podman.git
				
				
				
			
		
			
				
	
	
		
			11 lines
		
	
	
		
			303 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			303 B
		
	
	
	
		
			Go
		
	
	
	
// +build !linux
 | 
						|
 | 
						|
package libpod
 | 
						|
 | 
						|
import "github.com/containers/libpod/libpod/define"
 | 
						|
 | 
						|
// GetContainerStats gets the running stats for a given container
 | 
						|
func (c *Container) GetContainerStats(previousStats *define.ContainerStats) (*define.ContainerStats, error) {
 | 
						|
	return nil, define.ErrOSNotSupported
 | 
						|
}
 |