Add missing version.go file.

This commit is contained in:
Mariano Cano 2019-11-20 17:02:06 -08:00 committed by max furman
parent c60641701b
commit 03bb26fb91

17
authority/version.go Normal file
View File

@ -0,0 +1,17 @@
package authority
// GlobalVersion stores the version information of the server.
var GlobalVersion = Version{
Version: "0.0.0",
}
// Version defines the
type Version struct {
Version string
RequireClientAuthentication bool
}
// Version returns the version information of the server.
func (a *Authority) Version() Version {
return GlobalVersion
}