psu/cmd/stack.go

16 lines
214 B
Go
Raw Normal View History

2019-07-21 02:00:04 +00:00
package cmd
import (
"github.com/spf13/cobra"
)
// Command2 represents the stack command
var stackCmd = &cobra.Command{
Use: "stack",
Short: "Manage stacks",
}
func init() {
rootCmd.AddCommand(stackCmd)
}