mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-23 08:01:15 +00:00
20 lines
435 B
Go
20 lines
435 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/rsteube/carapace"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var pub_global_listCmd = &cobra.Command{
|
|
Use: "list",
|
|
Short: "List globally activated packages",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(pub_global_listCmd).Standalone()
|
|
|
|
pub_global_listCmd.Flags().BoolP("help", "h", false, "Print this usage information.")
|
|
pub_globalCmd.AddCommand(pub_global_listCmd)
|
|
}
|