Ralf Steube 981bf794e5
added apt (#2718)
initial version with incorrect flag types and descriptionsg
2025-03-02 10:29:26 +01:00

22 lines
467 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/carapace-sh/carapace-bin/completers/apt_completer/cmd/common"
"github.com/spf13/cobra"
)
var purgeCmd = &cobra.Command{
Use: "purge",
Short: "remove package including config and data",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(purgeCmd).Standalone()
common.AddGetFlags(purgeCmd)
common.ActionInstallFlags(purgeCmd)
rootCmd.AddCommand(purgeCmd)
}