Get retrieves the credential from the keyring. It must return os.ErrNotExist if the credential is not found.
(service string)
| 61 | // Get retrieves the credential from the keyring. It must return os.ErrNotExist |
| 62 | // if the credential is not found. |
| 63 | Get(service string) ([]byte, error) |
| 64 | // Delete deletes the credential from the keyring. It must return os.ErrNotExist |
| 65 | // if the credential is not found. |
| 66 | Delete(service string) error |
no outgoing calls