27bb03bbc0
* adding copyright header * fix fmt and a test
13 lines
213 B
Go
13 lines
213 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package vault
|
|
|
|
import "time"
|
|
|
|
type VaultVersion struct {
|
|
TimestampInstalled time.Time
|
|
Version string
|
|
BuildDate string
|
|
}
|