NewFileStore creates a new file credentials store.
(file store)
| 25 | |
| 26 | // NewFileStore creates a new file credentials store. |
| 27 | func NewFileStore(file store) Store { |
| 28 | return &fileStore{file: file} |
| 29 | } |
| 30 | |
| 31 | // Erase removes the given credentials from the file store.This function is |
| 32 | // idempotent and does not update the file if credentials did not change. |
no outgoing calls
searching dependent graphs…