11 lines
314 B
Go
11 lines
314 B
Go
// +build windows
|
|
|
|
package windows
|
|
|
|
import "fmt"
|
|
|
|
// GetPidsForContainer implements the exec driver Driver interface.
|
|
func (d *Driver) GetPidsForContainer(id string) ([]int, error) {
|
|
// TODO Windows: Implementation required.
|
|
return nil, fmt.Errorf("GetPidsForContainer: GetPidsForContainer() not implemented")
|
|
}
|