mirror of
https://github.com/rancher/os.git
synced 2025-09-08 02:01:27 +00:00
migrate to upstream libcompose in one and a half go
This commit is contained in:
16
vendor/github.com/docker/libnetwork/drivers_windows.go
generated
vendored
16
vendor/github.com/docker/libnetwork/drivers_windows.go
generated
vendored
@@ -1,17 +1,9 @@
|
||||
package libnetwork
|
||||
|
||||
import (
|
||||
"github.com/docker/libnetwork/driverapi"
|
||||
"github.com/docker/libnetwork/drivers/windows"
|
||||
)
|
||||
import "github.com/docker/libnetwork/drivers/windows"
|
||||
|
||||
func initDrivers(dc driverapi.DriverCallback) error {
|
||||
for _, fn := range [](func(driverapi.DriverCallback) error){
|
||||
windows.Init,
|
||||
} {
|
||||
if err := fn(dc); err != nil {
|
||||
return err
|
||||
}
|
||||
func getInitializers() []initializer {
|
||||
return []initializer{
|
||||
{windows.Init, "windows"},
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user