github.com/YousefHaggyHeroku/pack@v1.5.5/internal/commands/stack/stack.go (about) 1 package stack 2 3 import ( 4 "github.com/spf13/cobra" 5 6 "github.com/YousefHaggyHeroku/pack/logging" 7 ) 8 9 func Stack(logger logging.Logger) *cobra.Command { 10 command := cobra.Command{ 11 Use: "stack", 12 Short: "Displays stack information", 13 RunE: nil, 14 } 15 16 command.AddCommand(suggest(logger)) 17 return &command 18 }