The FileCache stores data on disk in order to preserve them across multiple CLI invocations.
| 20 | // The FileCache stores data on disk in order to preserve them across |
| 21 | // multiple CLI invocations. |
| 22 | type FileCache struct{} |
| 23 | |
| 24 | func (c FileCache) Get(key string) (string, time.Time) { |
| 25 | expires, value, err := c.readValue(key) |
nothing calls this directly
no outgoing calls
no test coverage detected