(key string)
| 23 | type cache interface { |
| 24 | StoreBytes(key string, value []byte, ttl time.Duration) error |
| 25 | GetBytes(key string) ([]byte, error) |
| 26 | } |
| 27 | |
| 28 | func getRouteHandler(prod bool, ca cache, aoe azureEstimator, e estimator, client http.Client, rec recorder) gin.HandlerFunc { |
no outgoing calls
no test coverage detected