mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a8a8bd1e42
These were no longer used. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
13 lines
255 B
Go
13 lines
255 B
Go
package libnetwork
|
|
|
|
import (
|
|
"github.com/docker/docker/libnetwork/drivers/null"
|
|
"github.com/docker/docker/libnetwork/drivers/remote"
|
|
)
|
|
|
|
func getInitializers() []initializer {
|
|
return []initializer{
|
|
{null.Init, "null"},
|
|
{remote.Init, "remote"},
|
|
}
|
|
}
|