Files
atlantis/cmd/root.go
Luke Kysow 8fbe662185 Return error if workspace doesn't exist (#61)
* Return error if workspace doesn't exist
* Default data dir to ~/.atlantis. Don't clean workspaces
* Run goimports
2017-07-01 16:17:22 -07:00

19 lines
265 B
Go

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)
}
}