()
| 3 | package confgroup |
| 4 | |
| 5 | func NewCache() *Cache { |
| 6 | return &Cache{ |
| 7 | hashes: make(map[uint64]uint), |
| 8 | sources: make(map[string]map[uint64]Config), |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | type Cache struct { |
| 13 | hashes map[uint64]uint // map[cfgHash]cfgCount |
no outgoing calls
searching dependent graphs…