17 lines
241 B
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
|
|
}
|