Files
sunhpc/internal/app/control/completions/completions.go
2026-04-29 22:52:33 +08:00

9 lines
211 B
Go

package completions
import (
"github.com/spf13/cobra"
)
func None(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
return nil, cobra.ShellCompDirectiveNoFileComp
}