15 lines
347 B
Go
15 lines
347 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package vault
|
|
|
|
type Inspectable interface {
|
|
// Returns a record view of a particular subsystem
|
|
GetRecords(tag string) ([]map[string]interface{}, error)
|
|
}
|
|
|
|
type Deserializable interface {
|
|
// Converts a structure into a consummable map
|
|
Deserialize() map[string]interface{}
|
|
}
|