Пример #1
0
Файл: main.go Проект: github/hub
func main() {
	defer github.CaptureCrash()

	err := commands.CmdRunner.Execute()
	if !err.Ran {
		ui.Errorln(err.Error())
	}
	os.Exit(err.ExitCode)
}
Пример #2
0
func main() {
	defer github.CaptureCrash()

	err := commands.CmdRunner.Execute()
	os.Exit(err.ExitCode)
}