CFDataClient is an interface for caching data.
| 67 | |
| 68 | // CFDataClient is an interface for caching data. |
| 69 | type CFDataClient interface { |
| 70 | AddData(ctx context.Context, data interface{}) (*types.Responses, error) |
| 71 | RemoveData(ctx context.Context, data interface{}) (*types.Responses, error) |
| 72 | } |
| 73 | |
| 74 | // noopCFDataClient is a no-op implementation of CFDataClient used when no |
| 75 | // real client is provided. |
no outgoing calls
no test coverage detected
searching dependent graphs…