mirror of https://github.com/docker/cli.git
16 lines
193 B
Go
16 lines
193 B
Go
|
package system
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/docker/client"
|
||
|
)
|
||
|
|
||
|
type fakeClient struct {
|
||
|
client.Client
|
||
|
|
||
|
version string
|
||
|
}
|
||
|
|
||
|
func (cli *fakeClient) ClientVersion() string {
|
||
|
return cli.version
|
||
|
}
|