12 lines
312 B
Go
12 lines
312 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/hyperhq/hyper-api/types"
|
|
derr "github.com/hyperhq/hypercli/errors"
|
|
)
|
|
|
|
// 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
|
|
}
|