mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
There's only one implementation; drop the interface and use the concrete type instead. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
15 lines
275 B
Go
15 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
|
|
}
|