github.com/tsuyoshiwada/git-prout@v0.0.0-20170402150409-5c51421d4bdb/main.go (about)

     1  package main
     2  
     3  import "os"
     4  
     5  func main() {
     6  	cli := &CLI{outStream: os.Stdout, errStream: os.Stderr, terminate: os.Exit}
     7  	cli.Run(os.Args)
     8  }