mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-28 22:28:25 +00:00
12 lines
151 B
Go
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()
|
|
}
|