()
| 52 | } |
| 53 | |
| 54 | func GetORGCaches() *ORGCaches { |
| 55 | orgCachesOnce.Do(func() { |
| 56 | orgCaches = &ORGCaches{ |
| 57 | orgIDToCache: cmap.NewWithCustomShardingFunction[int, *Cache](common.ShardingInt), |
| 58 | } |
| 59 | }) |
| 60 | return orgCaches |
| 61 | } |
| 62 | |
| 63 | func (c *ORGCaches) Init(ctx context.Context, cfg *prometheuscfg.Config) { |
| 64 | c.ctx = ctx |