Files
virtual-kubelet/vendor/github.com/hyperhq/hypercli/daemon/execdriver/windows/stats.go
2017-12-05 17:53:58 -06:00

15 lines
290 B
Go

// +build windows
package windows
import (
"fmt"
"github.com/hyperhq/hypercli/daemon/execdriver"
)
// Stats implements the exec driver Driver interface.
func (d *Driver) Stats(id string) (*execdriver.ResourceStats, error) {
return nil, fmt.Errorf("Windows: Stats not implemented")
}