2022-03-10 21:07:02 +00:00
|
|
|
//go:build !linux && !darwin && !windows
|
2017-06-12 17:27:11 +00:00
|
|
|
// +build !linux,!darwin,!windows
|
|
|
|
|
|
|
|
package cnmallocator
|
|
|
|
|
|
|
|
import (
|
2022-04-21 21:33:07 +00:00
|
|
|
"github.com/moby/swarmkit/v2/manager/allocator/networkallocator"
|
2017-06-12 17:27:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const initializers = nil
|
|
|
|
|
|
|
|
// PredefinedNetworks returns the list of predefined network structures
|
2024-02-23 23:16:11 +00:00
|
|
|
func (*Provider) PredefinedNetworks() []networkallocator.PredefinedNetworkData {
|
2017-06-12 17:27:11 +00:00
|
|
|
return nil
|
|
|
|
}
|