Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SetBuildInfo ¶
func SetBuildInfo(version, dateStr, gitTreeState, gitCommit string)
Set's the build info as a package global.
Types ¶
type BuildInfo ¶
type BuildInfo struct {
	// Version is the current semver.
	Version string `json:"version,omitempty"`
	// Date is the build date.
	Date time.Time `json:"date,omitempty"`
	// gitTreeState is the state of the git tree.
	GitTreeState string `json:"git_tree_state,omitempty"`
	// GitCommit is the git sha1.
	GitCommit string `json:"git_commit,omitempty"`
}
    BuildInfo describes the compile time information.
func GetBuildInfo ¶
func GetBuildInfo() *BuildInfo
GetBuildInfo returns the package global `buildInfo`
 Click to show internal directories. 
   Click to hide internal directories.