Add missing version.go file.

pull/166/head^2
Mariano Cano 5 years ago committed by max furman
parent c60641701b
commit 03bb26fb91

@ -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
}
Loading…
Cancel
Save