| 20 | ) |
| 21 | |
| 22 | type CachedAnalyzer struct { |
| 23 | a Analyzer |
| 24 | config config.Config |
| 25 | configBytes []byte |
| 26 | db config.Database |
| 27 | } |
| 28 | |
| 29 | func Cached(a Analyzer, c config.Config, db config.Database) *CachedAnalyzer { |
| 30 | return &CachedAnalyzer{ |
nothing calls this directly
no outgoing calls
no test coverage detected