mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
16 lines
214 B
Go
16 lines
214 B
Go
|
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)
|
||
|
}
|