Files
atlantis/cmd/root.go
Luke Kysow fa43febf60 Gitlab (#190)
Gitlab initial implementation
2017-11-16 13:22:28 -08:00

21 lines
367 B
Go

// Package cmd holds all our cli commands.
// These are different from the commands that get run via pull request comments.
package cmd
import (
"os"
"github.com/spf13/cobra"
)
var RootCmd = &cobra.Command{
Use: "atlantis",
Short: "Manage your Terraform workflow from GitHub",
}
func Execute() {
if err := RootCmd.Execute(); err != nil {
os.Exit(1)
}
}