1
0
mirror of https://github.com/docker/cli.git synced 2026-01-13 18:22:35 +03:00

Merge pull request #6245 from thaJeztah/rm_completion

cli/command/completion: remove deprecated ValidArgsFn
This commit is contained in:
Sebastiaan van Stijn
2025-08-07 13:52:04 +02:00
committed by GitHub

View File

@@ -13,11 +13,6 @@ import (
"github.com/spf13/cobra"
)
// ValidArgsFn a function to be used by cobra command as `ValidArgsFunction` to offer command line completion.
//
// Deprecated: use [cobra.CompletionFunc].
type ValidArgsFn = cobra.CompletionFunc
// APIClientProvider provides a method to get an [client.APIClient], initializing
// it if needed.
//