type Report struct {
Base string `json:"base"`
ChangedFiles int `json:"changedFiles"`
ChangedSymbols int `json:"changedSymbols"`
DirectConsumers int `json:"directConsumers"`
Modules int `json:"modules"`
TopFanIn []SymbolImpact `json:"topFanIn"`
}
type SymbolImpact struct {
Symbol string `json:"symbol"`
File string `json:"file"`
Line int `json:"line"`
ConsumerFiles int `json:"consumerFiles"`
Modules []string `json:"modules"`
}