MCPcopy Create free account
hub / github.com/UiPath/uipathcli / FileCache

Struct FileCache

cache/file_cache.go:22–22  ·  view source on GitHub ↗

The FileCache stores data on disk in order to preserve them across multiple CLI invocations.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected