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>
11 lines
246 B
Go
11 lines
246 B
Go
// +build windows
|
|
|
|
package windows
|
|
|
|
import "fmt"
|
|
|
|
func (d *driver) GetPidsForContainer(id string) ([]int, error) {
|
|
// TODO Windows: Implementation required.
|
|
return nil, fmt.Errorf("GetPidsForContainer: GetPidsForContainer() not implemented")
|
|
}
|