| 54 | } |
| 55 | |
| 56 | type resolver struct { |
| 57 | vars map[string]*latest.Variable |
| 58 | memoryCache map[string]interface{} |
| 59 | |
| 60 | localCache localcache.Cache |
| 61 | options *PredefinedVariableOptions |
| 62 | log log.Logger |
| 63 | } |
| 64 | |
| 65 | func varMatchFn(key, value string) bool { |
| 66 | return varspkg.VarMatchRegex.MatchString(value) |
nothing calls this directly
no outgoing calls
no test coverage detected