github.com/rakutentech/cli@v6.12.5-0.20151006231303-24468b65536e+incompatible/cf/app_constants.go (about)

     1  package cf
     2  
     3  import (
     4  	"os"
     5  	"path/filepath"
     6  )
     7  
     8  var (
     9  	Version     = "BUILT_FROM_SOURCE"
    10  	BuiltOnDate = "BUILT_AT_UNKNOWN_TIME"
    11  )
    12  
    13  func Name() string {
    14  	return filepath.Base(os.Args[0])
    15  }