libnetwork: fix some missing imports on macOS and FreeBSD
This was introduced in 1980deffae
, which
changed the implementation, but forgot to update imports in these.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
cc1627ae10
commit
77c2613d3a
2 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
package libnetwork
|
package libnetwork
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/docker/docker/libnetwork/driverapi"
|
||||||
"github.com/docker/docker/libnetwork/drivers/null"
|
"github.com/docker/docker/libnetwork/drivers/null"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
package libnetwork
|
package libnetwork
|
||||||
|
|
||||||
|
import "github.com/docker/docker/libnetwork/driverapi"
|
||||||
|
|
||||||
func registerNetworkDrivers(r driverapi.Registerer, driverConfig func(string) map[string]interface{}) error {
|
func registerNetworkDrivers(r driverapi.Registerer, driverConfig func(string) map[string]interface{}) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue