docs/libmachine/mcndockerclient/docker_host.go

17 lines
241 B
Go

package mcndockerclient
import "github.com/docker/machine/libmachine/auth"
type URLer interface {
URL() (string, error)
}
type AuthOptionser interface {
AuthOptions() *auth.Options
}
type DockerHost interface {
URLer
AuthOptionser
}