cli/main.go
2019-10-04 10:50:12 +02:00

15 lines
178 B
Go

package main
import (
"fmt"
"os"
"github.com/github/gh-cli/command"
)
func main() {
if err := command.RootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}