mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b1c4ec6f05
Signed-off-by: msabansal <sabansal@microsoft.com>
16 lines
391 B
Go
16 lines
391 B
Go
package libnetwork
|
|
|
|
import (
|
|
"github.com/docker/libnetwork/drivers/null"
|
|
"github.com/docker/libnetwork/drivers/windows"
|
|
)
|
|
|
|
func getInitializers() []initializer {
|
|
return []initializer{
|
|
{null.Init, "null"},
|
|
{windows.GetInit("transparent"), "transparent"},
|
|
{windows.GetInit("l2bridge"), "l2bridge"},
|
|
{windows.GetInit("l2tunnel"), "l2tunnel"},
|
|
{windows.GetInit("nat"), "nat"},
|
|
}
|
|
}
|