mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
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>
10 lines
243 B
Go
10 lines
243 B
Go
//go:build !freebsd && !linux && !windows
|
|
|
|
package libnetwork
|
|
|
|
import "github.com/docker/docker/libnetwork/driverapi"
|
|
|
|
func registerNetworkDrivers(r driverapi.Registerer, driverConfig func(string) map[string]interface{}) error {
|
|
return nil
|
|
}
|