RemoteCache implements remote cache
| 25 | |
| 26 | // RemoteCache implements remote cache |
| 27 | type RemoteCache struct { |
| 28 | ctx context.Context // for custom header |
| 29 | client rpcCache.Cache |
| 30 | } |
| 31 | |
| 32 | // NewRemoteCache is the factory method for RemoteCache |
| 33 | func NewRemoteCache(ctx context.Context, opts RemoteOptions) *RemoteCache { |
nothing calls this directly
no outgoing calls
no test coverage detected