...

Source file src/github.com/docker/docker-credential-helpers/credentials/version.go

Documentation: github.com/docker/docker-credential-helpers/credentials

     1  package credentials
     2  
     3  var (
     4  	// Name is filled at linking time
     5  	Name = ""
     6  
     7  	// Package is filled at linking time
     8  	Package = "github.com/docker/docker-credential-helpers"
     9  
    10  	// Version holds the complete version number. Filled in at linking time.
    11  	Version = "v0.0.0+unknown"
    12  
    13  	// Revision is filled with the VCS (e.g. git) revision being used to build
    14  	// the program at linking time.
    15  	Revision = ""
    16  )
    17  

View as plain text