Store is used to interact with files, both encrypted and unencrypted.
| 733 | |
| 734 | // Store is used to interact with files, both encrypted and unencrypted. |
| 735 | type Store interface { |
| 736 | EncryptedFileLoader |
| 737 | PlainFileLoader |
| 738 | EncryptedFileEmitter |
| 739 | PlainFileEmitter |
| 740 | ValueEmitter |
| 741 | CheckEncrypted |
| 742 | Name() string |
| 743 | } |
| 744 | |
| 745 | // SingleValueStore is the interface for determining whether a store uses only |
| 746 | // one single key and no comments. This is basically identifying the binary store. |
no outgoing calls
no test coverage detected