mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			295 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			295 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package version
 | 
						|
 | 
						|
var (
 | 
						|
	// The git commit that was compiled. This will be filled in by the compiler.
 | 
						|
	GitCommit   string
 | 
						|
	GitDescribe string
 | 
						|
 | 
						|
	// Whether cgo is enabled or not; set at build time
 | 
						|
	CgoEnabled bool
 | 
						|
 | 
						|
	Version           = "1.6.0"
 | 
						|
	VersionPrerelease = "dev"
 | 
						|
	VersionMetadata   = ""
 | 
						|
)
 |