зеркало из https://github.com/microsoft/docker.git
21 строка
406 B
Go
21 строка
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
|
|
}
|