Merge pull request #4447 from thaJeztah/deprecate_NewStartOptions

cli/command/container: deprecate NewStartOptions
This commit is contained in:
Sebastiaan van Stijn
2023-07-19 15:05:04 +02:00
committed by GitHub

View File

@ -27,7 +27,9 @@ type StartOptions struct {
Containers []string
}
// NewStartOptions creates a new StartOptions
// NewStartOptions creates a new StartOptions.
//
// Deprecated: create a new [StartOptions] directly.
func NewStartOptions() StartOptions {
return StartOptions{}
}