2022-05-07 15:40:11 +08:00
|
|
|
package upgrade
|
|
|
|
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
|
2022-11-04 21:55:17 +08:00
|
|
|
// Cmd describes an upgrade command.
|
2022-05-07 15:40:11 +08:00
|
|
|
var Cmd = &cobra.Command{
|
|
|
|
Use: "upgrade",
|
|
|
|
Short: "Upgrade goctl to latest version",
|
|
|
|
RunE: upgrade,
|
|
|
|
}
|