Files
docker-machine/libmachine/mcndockerclient/docker_host.go
David Gageot 3612c55677 Add version to machine ls
Signed-off-by: David Gageot <david@gageot.net>
2015-12-03 16:27:42 +01:00

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
}