StoreString writes a single string key/value pair in the config
(key, value string)
| 49 | type ConfigWrite interface { |
| 50 | // StoreString writes a single string key/value pair in the config |
| 51 | StoreString(key, value string) error |
| 52 | |
| 53 | // StoreTimestamp writes a key and timestamp value to the config |
| 54 | StoreTimestamp(key string, value time.Time) error |
no outgoing calls
no test coverage detected