| 13 | ) |
| 14 | |
| 15 | type CachedFunctionQuery struct { |
| 16 | cache FunctionCacher |
| 17 | serviceQuery ServiceQuery |
| 18 | emptyAnnotations map[string]string |
| 19 | singleFlight *singleflight.Group |
| 20 | } |
| 21 | |
| 22 | func NewCachedFunctionQuery(cache FunctionCacher, serviceQuery ServiceQuery) FunctionQuery { |
| 23 | return &CachedFunctionQuery{ |
nothing calls this directly
no outgoing calls
no test coverage detected