mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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
|
||
|
}
|