Store provides remote API access to a msgvault server.
| 17 | |
| 18 | // Store provides remote API access to a msgvault server. |
| 19 | type Store struct { |
| 20 | baseURL string |
| 21 | apiKey string |
| 22 | httpClient *http.Client |
| 23 | } |
| 24 | |
| 25 | // Config holds configuration for creating a remote store. |
| 26 | type Config struct { |
nothing calls this directly
no outgoing calls
no test coverage detected