| package cnmallocator | |
| import ( | |
| "github.com/docker/libnetwork/drivers/overlay/ovmanager" | |
| "github.com/docker/libnetwork/drivers/remote" | |
| "github.com/docker/swarmkit/manager/allocator/networkallocator" | |
| ) | |
| var initializers = []initializer{ | |
| {remote.Init, "remote"}, | |
| {ovmanager.Init, "overlay"}, | |
| } | |
| // PredefinedNetworks returns the list of predefined network structures | |
| func PredefinedNetworks() []networkallocator.PredefinedNetworkData { | |
| return nil | |
| } |