(service, account string)
| 59 | // UAT operations in token_store.go use the package-level Get/Set/Remove directly. |
| 60 | type KeychainAccess interface { |
| 61 | Get(service, account string) (string, error) |
| 62 | Set(service, account, value string) error |
| 63 | Remove(service, account string) error |
| 64 | } |
no outgoing calls