Files
atlantis/main.go
Luke Kysow d1bda5ff28 Use cobra and viper for cli/config (#20)
* #15 Use cobra and viper for cli/config

* Run gofmt
2017-06-07 21:20:37 -07:00

12 lines
151 B
Go

package main
import (
"github.com/hootsuite/atlantis/cmd"
"github.com/spf13/viper"
)
func main() {
viper.Set("version", "0.1.0")
cmd.Execute()
}