Skip to content

Commit 4956a15

Browse files
authored
Add the most basic interfaces to OSS (#13561)
1 parent 417eb9c commit 4956a15

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

vault/managed_key.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package vault
2+
3+
import "context"
4+
5+
type ManagedKey interface {
6+
Name() string
7+
}
8+
9+
type ManagedKeySystemView interface {
10+
GetManagedKey(context.Context, string) (ManagedKey, error)
11+
}

0 commit comments

Comments
 (0)