mirror of
https://github.com/rancher/os.git
synced 2025-07-05 19:16:13 +00:00
14 lines
241 B
Go
14 lines
241 B
Go
package libnetwork
|
|
|
|
import (
|
|
"github.com/docker/libnetwork/drivers/null"
|
|
"github.com/docker/libnetwork/drivers/remote"
|
|
)
|
|
|
|
func getInitializers() []initializer {
|
|
return []initializer{
|
|
{null.Init, "null"},
|
|
{remote.Init, "remote"},
|
|
}
|
|
}
|