Merge pull request #4811 from thaJeztah/remove_deprecated_NewStartOptions

cli/command/container: remove deprecated NewStartOptions
This commit is contained in:
Sebastiaan van Stijn 2024-01-23 18:22:03 +01:00 committed by GitHub
commit ea84a3fc31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 7 deletions

View File

@ -28,13 +28,6 @@ type StartOptions struct {
Containers []string
}
// NewStartOptions creates a new StartOptions.
//
// Deprecated: create a new [StartOptions] directly.
func NewStartOptions() StartOptions {
return StartOptions{}
}
// NewStartCommand creates a new cobra.Command for `docker start`
func NewStartCommand(dockerCli command.Cli) *cobra.Command {
var opts StartOptions