moby/libnetwork/cnmallocator/drivers_unsupported.go

16 lines
369 B
Go
Raw Normal View History

//go:build !linux && !darwin && !windows
// +build !linux,!darwin,!windows
package cnmallocator
import (
"github.com/moby/swarmkit/v2/manager/allocator/networkallocator"
)
const initializers = nil
// PredefinedNetworks returns the list of predefined network structures
func (*Provider) PredefinedNetworks() []networkallocator.PredefinedNetworkData {
return nil
}