diff options
Diffstat (limited to 'signer/core/api.go')
-rw-r--r-- | signer/core/api.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/signer/core/api.go b/signer/core/api.go index c380fe977..2b96cdb5f 100644 --- a/signer/core/api.go +++ b/signer/core/api.go @@ -197,6 +197,12 @@ type ( Message struct { Text string `json:"text"` } + PasswordRequest struct { + Prompt string `json:"prompt"` + } + PasswordResponse struct { + Password string `json:"password"` + } StartupInfo struct { Info map[string]interface{} `json:"info"` } |