mirror of
https://github.com/moby/moby.git
synced 2026-07-21 06:52:18 +00:00
- Notes at: https://gist.github.com/nerdalert/c0363c15d20986633fda Signed-off-by: Brent Salisbury <brent@docker.com>
24 lines
611 B
Go
24 lines
611 B
Go
package libnetwork
|
|
|
|
import (
|
|
"github.com/docker/libnetwork/drivers/bridge"
|
|
"github.com/docker/libnetwork/drivers/host"
|
|
"github.com/docker/libnetwork/drivers/ipvlan"
|
|
"github.com/docker/libnetwork/drivers/macvlan"
|
|
"github.com/docker/libnetwork/drivers/null"
|
|
"github.com/docker/libnetwork/drivers/overlay"
|
|
"github.com/docker/libnetwork/drivers/remote"
|
|
)
|
|
|
|
func getInitializers() []initializer {
|
|
return []initializer{
|
|
{bridge.Init, "bridge"},
|
|
{host.Init, "host"},
|
|
{null.Init, "null"},
|
|
{remote.Init, "remote"},
|
|
{overlay.Init, "overlay"},
|
|
{macvlan.Init, "macvlan"},
|
|
{ipvlan.Init, "ipvlan"},
|
|
}
|
|
}
|