mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
721518279a
related to https://github.com/docker/docker/issues/29368 Signed-off-by: Madhu Venugopal <madhu@docker.com>
13 lines
258 B
Go
13 lines
258 B
Go
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"},
|
|
}
|
|
}
|