Unverified Commit 4956a156 authored by Scott Miller's avatar Scott Miller Committed by GitHub
Browse files

Add the most basic interfaces to OSS (#13561)

parent 417eb9c8
Showing with 11 additions and 0 deletions
+11 -0
package vault
import "context"
type ManagedKey interface {
Name() string
}
type ManagedKeySystemView interface {
GetManagedKey(context.Context, string) (ManagedKey, error)
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment