Files
LazyPM/internal/utils/completion.go
2026-02-28 16:39:50 +01:00

11 lines
402 B
Go

package utils
import "github.com/spf13/cobra"
// CompletionFunc returns a function that provides shell completion for the given options.
func CompletionFunc(options []string) func(*cobra.Command, []string, string) ([]string, cobra.ShellCompDirective) {
return func(_ *cobra.Command, _ []string, _ string) ([]string, cobra.ShellCompDirective) {
return options, cobra.ShellCompDirectiveDefault
}
}