mirror of https://github.com/docker/cli.git
21 lines
406 B
Go
21 lines
406 B
Go
package cli
|
|
|
|
import (
|
|
flag "github.com/docker/docker/pkg/mflag"
|
|
"github.com/docker/docker/pkg/tlsconfig"
|
|
)
|
|
|
|
// CommonFlags represents flags that are common to both the client and the daemon.
|
|
type CommonFlags struct {
|
|
FlagSet *flag.FlagSet
|
|
PostParse func()
|
|
|
|
Debug bool
|
|
Hosts []string
|
|
LogLevel string
|
|
TLS bool
|
|
TLSVerify bool
|
|
TLSOptions *tlsconfig.Options
|
|
TrustKey string
|
|
}
|