github.com/gunjan5/docker@v1.8.2/daemon/execdriver/windows/stats.go (about) 1 // +build windows 2 3 package windows 4 5 import ( 6 "fmt" 7 8 "github.com/docker/docker/daemon/execdriver" 9 ) 10 11 func (d *driver) Stats(id string) (*execdriver.ResourceStats, error) { 12 return nil, fmt.Errorf("Windows: Stats not implemented") 13 }