mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Michael Crosby](/assets/img/avatar_default.png)
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
11 lines
207 B
Go
11 lines
207 B
Go
// +build !linux
|
|
|
|
package nodes
|
|
|
|
import "github.com/dotcloud/docker/pkg/libcontainer"
|
|
|
|
var DefaultNodes = []string{}
|
|
|
|
func GetHostDeviceNodes() ([]string, error) {
|
|
return nil, libcontainer.ErrUnsupported
|
|
}
|