mirror of
https://github.com/clearlinux/docker.git
synced 2026-08-28 13:25:42 +00:00
9ae9d4c87a
Signed-off-by: John Howard <jhoward@microsoft.com>
14 lines
233 B
Go
14 lines
233 B
Go
// +build windows
|
|
|
|
package windows
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
)
|
|
|
|
func (d *driver) Stats(id string) (*execdriver.ResourceStats, error) {
|
|
return nil, fmt.Errorf("Windows: Stats not implemented")
|
|
}
|