| 23 | ) |
| 24 | |
| 25 | type Analyzer struct { |
| 26 | db config.Database |
| 27 | client dbmanager.Client |
| 28 | pool *pgxpool.Pool |
| 29 | dbg opts.Debug |
| 30 | replacer *shfmt.Replacer |
| 31 | formats sync.Map |
| 32 | columns sync.Map |
| 33 | tables sync.Map |
| 34 | } |
| 35 | |
| 36 | func New(client dbmanager.Client, db config.Database) *Analyzer { |
| 37 | return &Analyzer{ |
nothing calls this directly
no outgoing calls
no test coverage detected