Get returns an Item matching the key or ErrKeyringKeyNotFound
(key string)
| 15 | type Keyring interface { |
| 16 | // Get returns an Item matching the key or ErrKeyringKeyNotFound |
| 17 | Get(key string) (Item, error) |
| 18 | // Set stores an Item on the keyring. Set is idempotent. |
| 19 | Set(item Item) error |
| 20 | // Remove removes the item with matching key |
no outgoing calls