mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
16 lines
276 B
Go
16 lines
276 B
Go
|
// +build experimental
|
||
|
|
||
|
package libnetwork
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/libnetwork/drivers/ipvlan"
|
||
|
"github.com/docker/libnetwork/drivers/macvlan"
|
||
|
)
|
||
|
|
||
|
func additionalDrivers() []initializer {
|
||
|
return []initializer{
|
||
|
{macvlan.Init, "macvlan"},
|
||
|
{ipvlan.Init, "ipvlan"},
|
||
|
}
|
||
|
}
|