mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4fc37a1ede
Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
14 lines
309 B
Go
14 lines
309 B
Go
// +build !experimental
|
|
|
|
package runconfig
|
|
|
|
import flag "github.com/docker/docker/pkg/mflag"
|
|
|
|
type experimentalFlags struct{}
|
|
|
|
func attachExperimentalFlags(cmd *flag.FlagSet) *experimentalFlags {
|
|
return nil
|
|
}
|
|
|
|
func applyExperimentalFlags(flags *experimentalFlags, config *Config, hostConfig *HostConfig) {
|
|
}
|