mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
These were no longer used.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit a8a8bd1e42)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
14 lines
255 B
Go
14 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"},
|
|
}
|
|
}
|