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

12 lines
312 B
Go

package daemon
import (
derr "github.com/hyperhq/hypercli/errors"
"github.com/docker/engine-api/types"
)
// ContainerTop is not supported on Windows and returns an error.
func (daemon *Daemon) ContainerTop(name string, psArgs string) (*types.ContainerProcessList, error) {
return nil, derr.ErrorCodeNoTop
}