mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
18 lines
373 B
Go
18 lines
373 B
Go
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
|
|
}
|