github.com/jingweno/gh@v2.1.1-0.20221007190738-04a7985fa9a1+incompatible/main.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/jingweno/gh/commands"
     5  	"github.com/jingweno/gh/github"
     6  	"os"
     7  )
     8  
     9  func main() {
    10  	defer github.CaptureCrash()
    11  
    12  	err := commands.CmdRunner.Execute()
    13  	os.Exit(err.ExitCode)
    14  }