64c6f72988
There's only one implementation; drop the interface and use the concrete type instead. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
14 lines
275 B
Go
14 lines
275 B
Go
//go:build !windows
|
|
|
|
package libnetwork
|
|
|
|
import "github.com/docker/docker/libnetwork/ipamapi"
|
|
|
|
// Stub implementations for DNS related functions
|
|
|
|
func (n *Network) startResolver() {
|
|
}
|
|
|
|
func defaultIpamForNetworkType(networkType string) string {
|
|
return ipamapi.DefaultIPAM
|
|
}
|