mirror of
https://github.com/outbackdingo/certificates.git
synced 2026-01-27 10:18:34 +00:00
Add missing version.go file.
This commit is contained in:
17
authority/version.go
Normal file
17
authority/version.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user