github.com/atlassian/git-lob@v0.0.0-20150806085256-2386a5ed291a/main.go (about)

     1  package main
     2  
     3  import (
     4  	"os"
     5  
     6  	"github.com/atlassian/git-lob/cmd"
     7  )
     8  
     9  func main() {
    10  	// Need to send the result code to the OS but also need to support 'defer'
    11  	// os.Exit would finish before any defers, so wrap everything in mainImpl()
    12  	os.Exit(cmd.MainImpl())
    13  }