RemoteStore extends MessageStore with remote-specific operations.
| 88 | |
| 89 | // RemoteStore extends MessageStore with remote-specific operations. |
| 90 | type RemoteStore interface { |
| 91 | MessageStore |
| 92 | ListAccounts() ([]remote.AccountInfo, error) |
| 93 | } |
| 94 | |
| 95 | // IsRemoteMode returns true if commands should use remote server. |
| 96 | // Resolution order: |
no outgoing calls
no test coverage detected