mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a8a8bd1e42
These were no longer used. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
24 lines
670 B
Go
24 lines
670 B
Go
package libnetwork
|
|
|
|
import (
|
|
"github.com/docker/docker/libnetwork/drivers/bridge"
|
|
"github.com/docker/docker/libnetwork/drivers/host"
|
|
"github.com/docker/docker/libnetwork/drivers/ipvlan"
|
|
"github.com/docker/docker/libnetwork/drivers/macvlan"
|
|
"github.com/docker/docker/libnetwork/drivers/null"
|
|
"github.com/docker/docker/libnetwork/drivers/overlay"
|
|
"github.com/docker/docker/libnetwork/drivers/remote"
|
|
)
|
|
|
|
func getInitializers() []initializer {
|
|
in := []initializer{
|
|
{bridge.Init, "bridge"},
|
|
{host.Init, "host"},
|
|
{ipvlan.Init, "ipvlan"},
|
|
{macvlan.Init, "macvlan"},
|
|
{null.Init, "null"},
|
|
{overlay.Init, "overlay"},
|
|
{remote.Init, "remote"},
|
|
}
|
|
return in
|
|
}
|