| 20 | ) |
| 21 | |
| 22 | type Analyzer struct { |
| 23 | db config.Database |
| 24 | conn *sqlite3.Conn |
| 25 | dbg opts.Debug |
| 26 | replacer *shfmt.Replacer |
| 27 | mu sync.Mutex |
| 28 | } |
| 29 | |
| 30 | func New(db config.Database) *Analyzer { |
| 31 | return &Analyzer{ |
nothing calls this directly
no outgoing calls
no test coverage detected