mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
907407d0b2
Signed-off-by: David Calavera <david.calavera@gmail.com>
11 lines
309 B
Go
11 lines
309 B
Go
package daemon
|
|
|
|
import (
|
|
derr "github.com/docker/docker/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
|
|
}
|