1
0
Fork 0
mirror of https://github.com/Luzifer/vault-unseal.git synced 2024-10-18 08:04:20 +00:00
vault-unseal/structs.go

9 lines
157 B
Go
Raw Normal View History

2015-08-12 14:44:48 +00:00
package main
type sealStatus struct {
Sealed bool `json:"sealed"`
T int `json:"t"`
N int `json:"n"`
Progress int `json:"progress"`
}