Skip to content

Commit 2b4cba1

Browse files
[PRIV-169] Add GetPublicKeyRequest/Response
1 parent 93ccbae commit 2b4cba1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pkg/capabilities/actions/vault/vault.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
package vault
33

44
const (
5-
CapabilityID = "[email protected]"
5+
CapabilityID = "[email protected]"
66
// Deprecated - use the types in core instead.
77
MethodGetSecrets = "vault.secrets.get"
88
)
9+
10+
type GetPublicKeyRequest struct{}
11+
12+
type GetPublicKeyResponse struct {
13+
PublicKey string `json:"publicKey"`
14+
}

0 commit comments

Comments
 (0)