mirror of https://github.com/docker/cli.git
12 lines
291 B
Go
12 lines
291 B
Go
|
package flags
|
||
|
|
||
|
// CommonOptions are options common to both the client and the daemon.
|
||
|
//
|
||
|
// Deprecated: use [ClientOptions].
|
||
|
type CommonOptions = ClientOptions
|
||
|
|
||
|
// NewCommonOptions returns a new CommonOptions
|
||
|
//
|
||
|
// Deprecated: use [NewClientOptions].
|
||
|
var NewCommonOptions = NewClientOptions
|