mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-10-17 12:51:06 +02:00
* Use libnetwork/ipvs alternative * PR image tag simplification * Remove nested vendor directories
14 lines
258 B
Go
14 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"},
|
|
}
|
|
}
|