blob: d117c25780c2314c4117aa5d491b916b3dc2e9b1 [file] [log] [blame]
package libnetwork
import (
"github.com/docker/libnetwork/drivers/null"
"github.com/docker/libnetwork/drivers/remote"
)
func getInitializers(experimental bool) []initializer {
return []initializer{
{null.Init, "null"},
{remote.Init, "remote"},
}
}