25 lines
457 B
Go
25 lines
457 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// listCmd represents the list command
|
|
var aliasListCmd = &cobra.Command{
|
|
Use: "list",
|
|
Aliases: []string{"dump", "show", "ls", "ll", "l"},
|
|
Short: "List Aliases",
|
|
Long: aliasListCmdLong,
|
|
Run: runListAliasCmd,
|
|
}
|
|
|
|
func runListAliasCmd(cmd *cobra.Command, args []string) {
|
|
fmt.Print("\n" + cache.AliasesByProjectString() + "\n")
|
|
}
|
|
|
|
func init() {
|
|
aliasCmd.AddCommand(aliasListCmd)
|
|
}
|