ResolutionCache a cache for resolving urls.
| 10 | |
| 11 | // ResolutionCache a cache for resolving urls. |
| 12 | type ResolutionCache interface { |
| 13 | Get(uri string) (any, bool) |
| 14 | Set(uri string, data any) |
| 15 | } |
| 16 | |
| 17 | type simpleCache struct { |
| 18 | lock sync.RWMutex |
no outgoing calls
no test coverage detected
searching dependent graphs…