package cmd import ( "os" "github.com/spf13/cobra" ) var RootCmd = &cobra.Command{ Use: "atlantis", Short: "Terraform collaboration tool", // todo: decide on name #opensource } func Execute() { if err := RootCmd.Execute(); err != nil { os.Exit(1) } }